aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/proj.rb
diff options
context:
space:
mode:
authorAdam Vandenberg2012-09-09 10:40:18 -0700
committerAdam Vandenberg2012-09-09 13:01:56 -0700
commite250bfbb5d5e735cf59a054617ca34f1fddd1536 (patch)
tree65bfb02705b5f17849d03d12cdf56506eb630842 /Library/Formula/proj.rb
parentc731ce26d83b4a72e708f7cd684527582de4eb81 (diff)
downloadhomebrew-e250bfbb5d5e735cf59a054617ca34f1fddd1536.tar.bz2
Use skip_clean :la
Diffstat (limited to 'Library/Formula/proj.rb')
-rw-r--r--Library/Formula/proj.rb11
1 files changed, 5 insertions, 6 deletions
diff --git a/Library/Formula/proj.rb b/Library/Formula/proj.rb
index c0fa9d145..6427a7920 100644
--- a/Library/Formula/proj.rb
+++ b/Library/Formula/proj.rb
@@ -6,23 +6,22 @@ class ProjDatumgrid < Formula
end
class Proj < Formula
- url 'http://download.osgeo.org/proj/proj-4.8.0.tar.gz'
homepage 'http://trac.osgeo.org/proj/'
+ url 'http://download.osgeo.org/proj/proj-4.8.0.tar.gz'
sha1 '5c8d6769a791c390c873fef92134bf20bb20e82a'
+ skip_clean :la
+
fails_with :llvm do
build 2334
end
- def skip_clean? path
- path.extname == '.la'
- end
-
def install
# The datum grid files are required to support datum shifting
ProjDatumgrid.new.brew { cp Dir["*"], buildpath/'nad' }
- system "./configure", "--prefix=#{prefix}", "--disable-dependency-tracking"
+ system "./configure", "--disable-dependency-tracking",
+ "--prefix=#{prefix}"
system "make install"
end
end