2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-10-02 18:02:51 +00:00
|
|
|
|
|
|
|
class Geos <Formula
|
2010-01-08 10:48:29 +00:00
|
|
|
url 'http://download.osgeo.org/geos/geos-3.2.0.tar.bz2'
|
2009-10-02 18:02:51 +00:00
|
|
|
homepage 'http://trac.osgeo.org/geos/'
|
2010-01-08 10:48:29 +00:00
|
|
|
md5 'bfad7129680f0107b6ca9a2b92a2c440'
|
2009-10-02 18:02:51 +00:00
|
|
|
|
|
|
|
def install
|
2010-01-12 21:31:07 +00:00
|
|
|
ENV.O3
|
2009-10-02 18:02:51 +00:00
|
|
|
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|