blob: 2e0b844d18686e206ea2ddb54d0e5abf3705ddf0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
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
|