aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/mcl.rb16
1 files changed, 16 insertions, 0 deletions
diff --git a/Library/Formula/mcl.rb b/Library/Formula/mcl.rb
new file mode 100644
index 000000000..68fefd1bf
--- /dev/null
+++ b/Library/Formula/mcl.rb
@@ -0,0 +1,16 @@
+require 'formula'
+
+class Mcl <Formula
+ version '10-201'
+ url 'http://micans.org/mcl/src/mcl-10-201.tar.gz'
+ homepage 'http://micans.org/mcl'
+ md5 '9e8aecb9011560b9c3e55fe0f2d1e791'
+
+ def install
+ bin.mkpath
+ system "./configure", "--disable-dependency-tracking",
+ "--prefix=#{prefix}",
+ "--enable-blast"
+ system "make install"
+ end
+end