diff options
| author | Rajeev Jain | 2013-04-19 04:59:20 -0500 |
|---|---|---|
| committer | Adam Vandenberg | 2013-08-05 13:25:29 -0700 |
| commit | a107299cd7dc06603c2a21d13332b3d419076dae (patch) | |
| tree | 99b6a0a6e800c3d01aba8103e2c31d5eebad167a /Library | |
| parent | e70b39733d395c431b41dd337ff93cbf416a7fa5 (diff) | |
| download | homebrew-a107299cd7dc06603c2a21d13332b3d419076dae.tar.bz2 | |
MOAB 4.6.0
Closes #19304.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/moab.rb | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Library/Formula/moab.rb b/Library/Formula/moab.rb new file mode 100644 index 000000000..e046f0f11 --- /dev/null +++ b/Library/Formula/moab.rb @@ -0,0 +1,19 @@ +require 'formula' + +class Moab < Formula + homepage 'https://trac.mcs.anl.gov/projects/ITAPS/wiki/MOAB' + url 'https://bitbucket.org/fathomteam/moab/get/4.6.0.tar.gz' + sha1 '0224188f423ee0fde92af86b8ececa86850bad02' + + depends_on :automake + depends_on :libtool + depends_on 'netcdf' + depends_on 'hdf5' + + def install + system "autoreconf", "--force", "--install" + system "./configure", "--disable-debug", "--disable-dependency-tracking", + "--prefix=#{prefix}" + system "make install" + end +end |
