2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-10-02 18:02:51 +00:00
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Geos < Formula
|
2012-06-25 21:34:10 +00:00
|
|
|
homepage 'http://trac.osgeo.org/geos'
|
2013-08-27 08:25:14 +00:00
|
|
|
url 'http://download.osgeo.org/geos/geos-3.4.2.tar.bz2'
|
|
|
|
sha1 'b8aceab04dd09f4113864f2d12015231bb318e9a'
|
2010-04-01 22:46:11 +00:00
|
|
|
|
2012-10-02 20:55:04 +00:00
|
|
|
option :universal
|
|
|
|
|
2009-10-02 18:02:51 +00:00
|
|
|
def install
|
2013-08-27 08:25:14 +00:00
|
|
|
ENV.universal_binary if build.universal?
|
|
|
|
|
|
|
|
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
|
2009-10-02 18:02:51 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|