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-03-05 03:31:56 +00:00
|
|
|
url 'http://download.osgeo.org/geos/geos-3.3.8.tar.bz2'
|
|
|
|
sha1 '1743e09f37eb75d85283a684a5765c4f44d035fa'
|
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
|
2012-10-02 20:55:04 +00:00
|
|
|
ENV.universal_binary if build.universal?
|
2011-11-29 01:24:58 +00:00
|
|
|
# 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}"
|
2009-10-02 18:02:51 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|