homebrew-core/Formula/blast.rb
Trevor Wennblom 14586d5d57 blast: updated to 2.2.25+
Closes Homebrew/homebrew#9929.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2012-02-01 19:37:33 -06:00

16 lines
388 B
Ruby

require 'formula'
class Blast < Formula
url 'ftp://ftp.ncbi.nih.gov/blast/executables/blast+/2.2.25/ncbi-blast-2.2.25+-src.tar.gz'
homepage 'http://blast.ncbi.nlm.nih.gov/'
md5 '01256b808e3af49a5087945b6a8c8293'
version '2.2.25'
def install
Dir.chdir 'c++' do
system "./configure --prefix=#{prefix}"
system "make"
system "make install"
end
end
end