aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/blast.rb
blob: b1227b64c5b0d1c462aa36080e8be7ee938611c7 (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.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