aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/geos.rb
diff options
context:
space:
mode:
authorRob Hudson2009-10-02 11:02:51 -0700
committerRob Hudson2009-10-02 11:04:48 -0700
commit2cfd5d2057615c432bdb2411bde8936997262e1e (patch)
tree0810356562239cc455027d38b96dd00404ca5d2c /Library/Formula/geos.rb
parent18531c496c0b486be21984def26442cef1efde69 (diff)
downloadhomebrew-2cfd5d2057615c432bdb2411bde8936997262e1e.tar.bz2
Added postgis recipe, which depends on postgresql, proj and geos.
Diffstat (limited to 'Library/Formula/geos.rb')
-rw-r--r--Library/Formula/geos.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Formula/geos.rb b/Library/Formula/geos.rb
new file mode 100644
index 000000000..25cd463d8
--- /dev/null
+++ b/Library/Formula/geos.rb
@@ -0,0 +1,12 @@
+require 'brewkit'
+
+class Geos <Formula
+ url 'http://download.osgeo.org/geos/geos-3.1.1.tar.bz2'
+ homepage 'http://trac.osgeo.org/geos/'
+ md5 '196f4424aa4ef94476e6886d3a964fb6'
+
+ def install
+ system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
+ system "make install"
+ end
+end