diff options
| author | Ben Blackburne | 2009-11-10 23:14:46 +0000 |
|---|---|---|
| committer | Adam Vandenberg | 2010-08-11 12:54:31 -0700 |
| commit | f17862fada7ec21eb4fae8d6c695a060ac467299 (patch) | |
| tree | 215323ff94d57250d3dc5ab86143a6668fcca652 /Library/Formula | |
| parent | f0072d9a1bc4f3fbc806b2db35258ef311ef5cef (diff) | |
| download | homebrew-f17862fada7ec21eb4fae8d6c695a060ac467299.tar.bz2 | |
Added EMBOSS Bioinformatics suite
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/emboss.rb | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Formula/emboss.rb b/Library/Formula/emboss.rb new file mode 100644 index 000000000..71f6c815f --- /dev/null +++ b/Library/Formula/emboss.rb @@ -0,0 +1,12 @@ +require 'formula' + +class Emboss <Formula + url 'ftp://emboss.open-bio.org/pub/EMBOSS/EMBOSS-6.3.1.tar.gz' + homepage 'http://emboss.sourceforge.net/' + md5 '04d1179b6261103a77e396d54f8ac38e' + + def install + system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking" + system "make install" + end +end |
