blob: 3f06e32c938537c8b749c32f077e4820b4f5d146 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
require 'formula'
class Bedtools < Formula
url 'http://bedtools.googlecode.com/files/BEDTools.v2.16.1.tar.gz'
homepage 'http://code.google.com/p/bedtools/'
md5 'f9356528d6c70b2f25a91f0464a539f9'
head 'https://github.com/arq5x/bedtools.git'
def install
system "make all"
bin.install Dir['bin/*']
end
end
|