homebrew-core/Formula/proj.rb
Max Howell 61b2307139 s/require 'brewkit'/require 'formula'/g
brewkit.rb changes ENV destructively, so lets not do that everytime a formula
is required. Now it's possible for other tools to require a formula
description without worrying about side-effects.
2009-10-15 16:48:03 +01:00

23 lines
624 B
Ruby

require 'formula'
class ProjDatumgrid <Formula
url 'ftp://ftp.remotesensing.org/pub/proj/proj-datumgrid-1.5.zip'
md5 'f5bf28a2a9c6afe9a3f670f0c0adb783'
end
class Proj <Formula
url 'http://download.osgeo.org/proj/proj-4.7.0.tar.gz'
homepage 'http://trac.osgeo.org/proj/'
md5 '927d34623b52e0209ba2bfcca18fe8cd'
def install
# The datum grid files are required to support datum shifting
d = Dir.getwd
ProjDatumgrid.new.brew { FileUtils.cp Dir["*"], "#{d}/nad/" }
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
system "make install"
end
end