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:
parent
61aafc2bbd
commit
763585c3cd
1 changed files with 17 additions and 0 deletions
17
Formula/virtualpg.rb
Normal file
17
Formula/virtualpg.rb
Normal 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
|
Loading…
Reference in a new issue