61b2307139
brewkit.rb changes ENV destructively, so lets not do that everytime a formula is required. Now it's possible for other tools to require a formula description without worrying about side-effects.
12 lines
329 B
Ruby
12 lines
329 B
Ruby
require 'formula'
|
|
|
|
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
|