homebrew-core/Formula/bedtools.rb
Carlos Borroto 6ec1f5aaab bedtools 2.16.2
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-04-04 20:31:34 -07:00

13 lines
325 B
Ruby

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