aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/emboss.rb
blob: a2cd956fc1f7e6ee1478f12a7b3110a7d326198d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
require 'formula'

class Emboss < Formula
  url 'ftp://emboss.open-bio.org/pub/EMBOSS/EMBOSS-6.4.0.tar.gz'
  homepage 'http://emboss.sourceforge.net/'
  md5 '54993a22064222b01bd4fc8086f7684d'

  def install
    system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
    system "make install"
  end
end