a9087178a3
This updates geos to version 3.3.1. It compiles on 64bit Snow Lep with XCode-4.0.2, clang-2.0, and gcc-4.2.1.5666. It continues to fail_with_llvm as is handled in the previous formula. EDIT: Now with ENV.gcc and without ENV.O3 EDIT: Now remove all ENV.* leaving fails_with_llvm to sort it. Closes Homebrew/homebrew#8353. Signed-off-by: Charlie Sharpsteen <source@sharpsteen.net>
18 lines
459 B
Ruby
18 lines
459 B
Ruby
require 'formula'
|
|
|
|
class Geos < Formula
|
|
url 'http://download.osgeo.org/geos/geos-3.3.1.tar.bz2'
|
|
homepage 'http://trac.osgeo.org/geos/'
|
|
sha1 '4f89e62c636dbf3e5d7e1bfcd6d9a7bff1bcfa60'
|
|
|
|
def skip_clean? path
|
|
path.extname == '.la'
|
|
end
|
|
|
|
fails_with_llvm "Some symbols are missing during link step."
|
|
|
|
def install
|
|
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
|
|
system "make install"
|
|
end
|
|
end
|