diff options
| author | Rob Hudson | 2009-10-02 11:02:51 -0700 |
|---|---|---|
| committer | Rob Hudson | 2009-10-02 11:04:48 -0700 |
| commit | 2cfd5d2057615c432bdb2411bde8936997262e1e (patch) | |
| tree | 0810356562239cc455027d38b96dd00404ca5d2c /Library/Formula/geos.rb | |
| parent | 18531c496c0b486be21984def26442cef1efde69 (diff) | |
| download | homebrew-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.rb | 12 |
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 |
