2011-04-11 20:25:00 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Bedtools < Formula
|
2011-10-26 15:52:17 +00:00
|
|
|
url 'http://bedtools.googlecode.com/files/BEDTools.v2.13.4.tar.gz'
|
2011-04-11 20:25:00 +00:00
|
|
|
homepage 'http://code.google.com/p/bedtools/'
|
2011-10-26 15:52:17 +00:00
|
|
|
md5 '47383058bd48fb64da878e85c5eb1a4a'
|
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
|