homebrew-core/Formula/bedtools.rb
Carlos Borroto 8915c73f67 bedtools 2.13.3
Closes Homebrew/homebrew#7958.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2011-10-03 16:24:32 -05:00

13 lines
325 B
Ruby

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