added NCBI BLAST 2.2.24+
Closes Homebrew/homebrew#4033. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
This commit is contained in:
parent
b889d91a4b
commit
3b421030b8
1 changed files with 16 additions and 0 deletions
16
Formula/blast.rb
Normal file
16
Formula/blast.rb
Normal file
|
@ -0,0 +1,16 @@
|
|||
require 'formula'
|
||||
|
||||
class Blast <Formula
|
||||
url 'ftp://ftp.ncbi.nih.gov/blast/executables/blast+/2.2.24/ncbi-blast-2.2.24+-src.tar.gz'
|
||||
homepage 'http://blast.ncbi.nlm.nih.gov/Blast.cgi'
|
||||
md5 '8877bf01a7370ffa01b5978b8460a4d9'
|
||||
version '2.2.24'
|
||||
|
||||
def install
|
||||
Dir.chdir 'c++' do
|
||||
system "./configure --prefix=#{prefix}"
|
||||
system "make"
|
||||
system "make install"
|
||||
end
|
||||
end
|
||||
end
|
Loading…
Reference in a new issue