Skip to content

Commit

Permalink
added NCBI BLAST 2.2.24+
Browse files Browse the repository at this point in the history
Closes Homebrew#4033.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
  • Loading branch information
audy authored and MikeMcQuaid committed Mar 15, 2011
1 parent 5e4a15a commit 057f8f7
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions Library/Formula/blast.rb
@@ -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

0 comments on commit 057f8f7

Please sign in to comment.