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