homebrew-core/Formula/blast.rb
Adam Vandenberg da3fdbd0cf Use "cd" instead of "Dir.chdir"
* And "mkdir" isntead of "Dir.mkdir"
* And "Dir[]" instead of "Dir.glob"
* Also style fixes and nitpicks
2012-02-24 21:35:50 -08:00

16 lines
384 B
Ruby

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