homebrew-core/Formula/gmt.rb
Braden 07555a889f gmt 4.5.9
GMT updated to 4.5.9. Additionally, gshhs renamed to gshhg and updated to 2.2.2, and gshhg has its files at the root of the archive.

Closes Homebrew/homebrew#17553.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-02-02 23:29:01 -08:00

36 lines
1.1 KiB
Ruby

require 'formula'
class Gshhg < Formula
homepage 'http://gmt.soest.hawaii.edu/'
url 'ftp://ftp.soest.hawaii.edu/gmt/gshhg-gmt-nc4-2.2.2.tar.gz'
sha1 'f01c322ad1767abf99818c250b1a58b3e2c12e1c'
end
class Gmt < Formula
homepage 'http://gmt.soest.hawaii.edu/'
url 'ftp://ftp.soest.hawaii.edu/gmt/gmt-4.5.9.tar.bz2'
sha1 '711922fd99dcd47ace522f1e46fcafa5beab8c94'
depends_on 'gdal'
depends_on 'netcdf'
def install
ENV.deparallelize # Parallel builds don't work due to missing makefile dependencies
system "./configure", "--prefix=#{prefix}",
"--datadir=#{share}/#{name}",
"--enable-gdal=#{HOMEBREW_PREFIX}",
"--enable-netcdf=#{HOMEBREW_PREFIX}",
"--enable-shared",
"--enable-triangle",
"--disable-xgrid",
"--disable-mex"
system "make"
system "make install-gmt"
system "make install-data"
system "make install-suppl"
system "make install-man"
Gshhg.new.brew { (share+name).install Dir['*'] }
end
end