aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKashif Rasul2013-08-27 10:25:14 +0200
committerAdam Vandenberg2013-08-27 17:26:35 -0700
commitc12be20baf06d052f7b162a0cfaf53cd8d20d2e6 (patch)
tree3ee232c7e142667ed74c61e178d7d8786383fbfb
parentc3507e691db1b80c6be1dd52040fd1359e1a87b3 (diff)
downloadhomebrew-c12be20baf06d052f7b162a0cfaf53cd8d20d2e6.tar.bz2
geos 3.4.2
Closes #22141. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
-rw-r--r--Library/Formula/geos.rb14
1 files changed, 5 insertions, 9 deletions
diff --git a/Library/Formula/geos.rb b/Library/Formula/geos.rb
index 5292c4989..e3a243fab 100644
--- a/Library/Formula/geos.rb
+++ b/Library/Formula/geos.rb
@@ -2,19 +2,15 @@ require 'formula'
class Geos < Formula
homepage 'http://trac.osgeo.org/geos'
- url 'http://download.osgeo.org/geos/geos-3.4.1.tar.bz2'
- sha1 '0fee633694049192726149f83c47fef4d73c7468'
+ url 'http://download.osgeo.org/geos/geos-3.4.2.tar.bz2'
+ sha1 'b8aceab04dd09f4113864f2d12015231bb318e9a'
option :universal
- depends_on 'cmake' => :build
-
def install
- if build.universal?
- ENV.universal_binary
- ENV['CMAKE_OSX_ARCHITECTURES'] = Hardware::CPU.universal_archs.as_cmake_arch_flags
- end
- system "cmake", ".", *std_cmake_args
+ ENV.universal_binary if build.universal?
+
+ system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "make install"
end
end