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

class Emboss < Formula
  homepage 'http://emboss.sourceforge.net/'
  url 'ftp://emboss.open-bio.org/pub/EMBOSS/EMBOSS-6.5.7.tar.gz'
  sha1 '907231eafe07917ae0bf9c5da2e7cdc3e9bae03a'

  depends_on 'pkg-config' => :build
  depends_on :x11

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