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