c448402c15
Closes Homebrew/homebrew#22141. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
16 lines
386 B
Ruby
16 lines
386 B
Ruby
require 'formula'
|
|
|
|
class Geos < Formula
|
|
homepage 'http://trac.osgeo.org/geos'
|
|
url 'http://download.osgeo.org/geos/geos-3.4.2.tar.bz2'
|
|
sha1 'b8aceab04dd09f4113864f2d12015231bb318e9a'
|
|
|
|
option :universal
|
|
|
|
def install
|
|
ENV.universal_binary if build.universal?
|
|
|
|
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
|
|
system "make install"
|
|
end
|
|
end
|