homebrew-core/Formula/bedtools.rb
Carlos Borroto 063fb4ad5b bedtools 2.13.4
Closes Homebrew/homebrew#8314.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2011-10-26 18:21:32 -05:00

13 lines
325 B
Ruby

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