diff options
| author | Simon Sigurdhsson | 2012-08-04 22:58:30 +0200 |
|---|---|---|
| committer | Adam Vandenberg | 2012-08-05 20:48:37 -0700 |
| commit | 5c16200d32af8110b1a5cda4579d7c09698d1c42 (patch) | |
| tree | d131ff7123b65b321cd5c31c14fc2d971f504282 /Library/Formula | |
| parent | 58376c4f0b0dda925d3a59434424be741b423b13 (diff) | |
| download | homebrew-5c16200d32af8110b1a5cda4579d7c09698d1c42.tar.bz2 | |
emboss 6.5.7
Closes #13965.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/emboss.rb | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/Library/Formula/emboss.rb b/Library/Formula/emboss.rb index a2cd956fc..1e41e8e53 100644 --- a/Library/Formula/emboss.rb +++ b/Library/Formula/emboss.rb @@ -1,12 +1,16 @@ 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' + 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", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking" + system "./configure", "--disable-debug", "--disable-dependency-tracking", + "--prefix=#{prefix}" system "make install" end end |
