2011-04-11 20:25:00 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Bedtools < Formula
|
2012-04-05 03:17:47 +00:00
|
|
|
url 'http://bedtools.googlecode.com/files/BEDTools.v2.16.2.tar.gz'
|
2011-04-11 20:25:00 +00:00
|
|
|
homepage 'http://code.google.com/p/bedtools/'
|
2012-04-05 03:17:47 +00:00
|
|
|
md5 'a627ec8da816f62b14d5be74083c0206'
|
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
|