2011-01-26 22:17:15 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-21 19:58:44 +00:00
|
|
|
class Blast < Formula
|
2011-01-26 22:17:15 +00:00
|
|
|
url 'ftp://ftp.ncbi.nih.gov/blast/executables/blast+/2.2.24/ncbi-blast-2.2.24+-src.tar.gz'
|
|
|
|
homepage 'http://blast.ncbi.nlm.nih.gov/Blast.cgi'
|
|
|
|
md5 '8877bf01a7370ffa01b5978b8460a4d9'
|
|
|
|
version '2.2.24'
|
|
|
|
|
|
|
|
def install
|
|
|
|
Dir.chdir 'c++' do
|
|
|
|
system "./configure --prefix=#{prefix}"
|
|
|
|
system "make"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|