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 ProjDatumgrid < Formula
|
2010-04-26 23:19:00 +00:00
|
|
|
url 'http://download.osgeo.org/proj/proj-datumgrid-1.5.zip'
|
2009-10-02 18:02:51 +00:00
|
|
|
md5 'f5bf28a2a9c6afe9a3f670f0c0adb783'
|
|
|
|
end
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Proj < Formula
|
2012-03-15 18:35:33 +00:00
|
|
|
url 'http://download.osgeo.org/proj/proj-4.8.0.tar.gz'
|
2009-10-02 18:02:51 +00:00
|
|
|
homepage 'http://trac.osgeo.org/proj/'
|
2012-03-15 18:35:33 +00:00
|
|
|
md5 'd815838c92a29179298c126effbb1537'
|
2009-10-02 18:02:51 +00:00
|
|
|
|
2011-10-28 20:29:31 +00:00
|
|
|
fails_with_llvm :build => 2334
|
2011-03-21 21:24:22 +00:00
|
|
|
|
2010-04-02 17:10:05 +00:00
|
|
|
def skip_clean? path
|
|
|
|
path.extname == '.la'
|
|
|
|
end
|
|
|
|
|
2009-10-02 18:02:51 +00:00
|
|
|
def install
|
|
|
|
# The datum grid files are required to support datum shifting
|
|
|
|
d = Dir.getwd
|
2010-04-07 05:58:35 +00:00
|
|
|
ProjDatumgrid.new.brew { cp Dir["*"], "#{d}/nad/" }
|
2009-10-02 18:02:51 +00:00
|
|
|
|
|
|
|
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|