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