blob: 74d1db2bd7d04702943221698ae0ae4c3d9b27de (
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.13.2.tar.gz'
homepage 'http://code.google.com/p/bedtools/'
md5 'cd3671eda69da312237523beadefbd52'
head 'https://github.com/arq5x/bedtools.git'
def install
system "make all"
bin.install Dir['bin/*']
end
end
|