homebrew-core/Formula/bedtools.rb
Carlos Borroto e8a80b66b9 bedtools 2.15.0
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-01-05 19:44:38 -08:00

13 lines
325 B
Ruby

require 'formula'
class Bedtools < Formula
url 'http://bedtools.googlecode.com/files/BEDTools.v2.15.0.tar.gz'
homepage 'http://code.google.com/p/bedtools/'
md5 'c0cbcb748f54ed99fce47c687bd0f260'
head 'https://github.com/arq5x/bedtools.git'
def install
system "make all"
bin.install Dir['bin/*']
end
end