homebrew-core/Formula/geos.rb
Kashif Rasul 64ed0d612e geos 3.3.7
Closes Homebrew/homebrew#17664.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-02-07 16:16:09 -08:00

21 lines
681 B
Ruby

require 'formula'
class Geos < Formula
homepage 'http://trac.osgeo.org/geos'
url 'http://download.osgeo.org/geos/geos-3.3.7.tar.bz2'
sha1 'd62c6f86ba854f319feaa5d957bebb8b6bed10a3'
option :universal
def install
ENV.universal_binary if build.universal?
# fixes compile error: missing symbols being optimized out using llvm.
if ENV.compiler == :llvm then
inreplace 'src/geom/Makefile.in', 'CFLAGS = @CFLAGS@', 'CFLAGS = @CFLAGS@ -O1'
inreplace 'src/geom/Makefile.in', 'CXXFLAGS = @CXXFLAGS@', 'CXXFLAGS = @CXXFLAGS@ -O1'
end
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "make install"
end
end