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-08-18 10:47:00 +00:00
|
|
|
url 'http://download.osgeo.org/geos/geos-3.4.1.tar.bz2'
|
|
|
|
sha1 '0fee633694049192726149f83c47fef4d73c7468'
|
2010-04-01 22:46:11 +00:00
|
|
|
|
2012-10-02 20:55:04 +00:00
|
|
|
option :universal
|
|
|
|
|
2013-08-18 10:47:00 +00:00
|
|
|
depends_on 'cmake' => :build
|
|
|
|
|
2009-10-02 18:02:51 +00:00
|
|
|
def install
|
2013-08-18 10:47:00 +00:00
|
|
|
if build.universal?
|
|
|
|
ENV.universal_binary
|
|
|
|
ENV['CMAKE_OSX_ARCHITECTURES'] = Hardware::CPU.universal_archs.as_cmake_arch_flags
|
2011-11-29 01:24:58 +00:00
|
|
|
end
|
2013-08-18 10:47:00 +00:00
|
|
|
system "cmake", ".", *std_cmake_args
|
2009-10-02 18:02:51 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|