2011-01-26 22:17:15 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-21 19:58:44 +00:00
|
|
|
class Blast < Formula
|
2012-02-01 23:40:38 +00:00
|
|
|
homepage 'http://blast.ncbi.nlm.nih.gov/'
|
2012-02-21 06:04:21 +00:00
|
|
|
url 'ftp://ftp.ncbi.nih.gov/blast/executables/blast+/2.2.25/ncbi-blast-2.2.25+-src.tar.gz'
|
2012-02-01 23:40:38 +00:00
|
|
|
version '2.2.25'
|
2012-02-21 06:04:21 +00:00
|
|
|
md5 '01256b808e3af49a5087945b6a8c8293'
|
2011-01-26 22:17:15 +00:00
|
|
|
|
|
|
|
def install
|
2012-02-21 06:04:21 +00:00
|
|
|
cd 'c++' do
|
|
|
|
system "./configure", "--prefix=#{prefix}"
|
2011-01-26 22:17:15 +00:00
|
|
|
system "make"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|