aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula')
-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