aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/minc.rb
diff options
context:
space:
mode:
authorPeter Kristensen2010-11-01 22:27:52 +0100
committerAdam Vandenberg2010-11-04 08:11:37 -0700
commit1f4d8b7d24071c7d44da82e71c321384882bccf9 (patch)
treeb9abe9ba98c0403087c4224233fd77b3956c8ffa /Library/Formula/minc.rb
parent5149adc55d43c92b038cff358573697dd087f70c (diff)
downloadhomebrew-1f4d8b7d24071c7d44da82e71c321384882bccf9.tar.bz2
New formula: minc
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/minc.rb')
-rw-r--r--Library/Formula/minc.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/Library/Formula/minc.rb b/Library/Formula/minc.rb
new file mode 100644
index 000000000..71ead3326
--- /dev/null
+++ b/Library/Formula/minc.rb
@@ -0,0 +1,15 @@
+require 'formula'
+
+class Minc <Formula
+ url 'http://packages.bic.mni.mcgill.ca/tgz/minc-2.1.00.tar.gz'
+ homepage 'http://www.nmr.mgh.harvard.edu/~rhoge/minc/'
+ md5 '1ef2402abc8f49d870d9f610eb5ad4c8'
+
+ depends_on 'netcdf'
+
+ def install
+ system "./configure", "--disable-debug", "--disable-dependency-tracking",
+ "--prefix=#{prefix}"
+ system "make install"
+ end
+end