New formula: mcl

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
master
Tamas 2010-08-19 17:10:52 +01:00 committed by Adam Vandenberg
parent 3b01e0da53
commit 074c3d0734
1 changed files with 16 additions and 0 deletions

16
Formula/mcl.rb Normal file
View File

@ -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