blob: d9d107bfdbb20db7e1f321e3dd6530aa655bf36d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
require 'formula'
class Geos < Formula
url 'http://download.osgeo.org/geos/geos-3.3.2.tar.bz2'
homepage 'http://trac.osgeo.org/geos/'
sha1 '942b0bbc61a059bd5269fddd4c0b44a508670cb3'
def install
# 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
|