2011-04-11 20:25:00 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Bedtools < Formula
|
2012-03-14 01:21:53 +00:00
|
|
|
url 'http://bedtools.googlecode.com/files/BEDTools.v2.16.1.tar.gz'
|
2011-04-11 20:25:00 +00:00
|
|
|
homepage 'http://code.google.com/p/bedtools/'
|
2012-03-14 01:21:53 +00:00
|
|
|
md5 'f9356528d6c70b2f25a91f0464a539f9'
|
2011-05-27 05:02:55 +00:00
|
|
|
head 'https://github.com/arq5x/bedtools.git'
|
2011-04-11 20:25:00 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
system "make all"
|
|
|
|
bin.install Dir['bin/*']
|
|
|
|
end
|
|
|
|
end
|