VirtualPG 1.0.0

SQLite extension for exchange of data between PostGIS/PostgreSQL and SpatiaLite

Closes Homebrew/homebrew#23551.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
Larry Shaffer 2013-10-24 12:53:33 -06:00 committed by Adam Vandenberg
parent 61aafc2bbd
commit 763585c3cd

17
Formula/virtualpg.rb Normal file
View file

@ -0,0 +1,17 @@
require 'formula'
class Virtualpg < Formula
homepage 'https://www.gaia-gis.it/fossil/virtualpg/index'
url 'http://www.gaia-gis.it/gaia-sins/virtualpg-1.0.0.tar.gz'
sha1 '8c7959beb1cff78d3c00255fe73c748d1a5b250b'
depends_on 'libspatialite'
depends_on 'postgis'
def install
system "./configure", "--enable-shared=yes",
"--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make", "install"
end
end