Added EMBOSS Bioinformatics suite

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
master
Ben Blackburne 2009-11-10 23:14:46 +00:00 committed by Adam Vandenberg
parent ff3f32b3eb
commit db68c6100c
1 changed files with 12 additions and 0 deletions

12
Formula/emboss.rb Normal file
View File

@ -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