forked from ahmadia/homebrew-science
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gmt.rb
36 lines (30 loc) · 1.11 KB
/
gmt.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
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