2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-10-02 18:02:51 +00:00
|
|
|
|
|
|
|
class Geos <Formula
|
2010-05-01 08:35:18 +00:00
|
|
|
url 'http://download.osgeo.org/geos/geos-3.2.2.tar.bz2'
|
2009-10-02 18:02:51 +00:00
|
|
|
homepage 'http://trac.osgeo.org/geos/'
|
2010-05-01 08:35:18 +00:00
|
|
|
md5 'c5d264acac22fe7720f85dadc1fc17c6'
|
2010-04-01 22:46:11 +00:00
|
|
|
|
|
|
|
def skip_clean? path
|
|
|
|
path.extname == '.la'
|
|
|
|
end
|
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
|