homebrew-core/Formula/bedtools.rb
Nibbles 2bits a163b159ed bedtools 2.14.3
Upgrade bedtools to 2.14.3.  No errors compiling on Snow Leopard
with XCode-4.0.2, clang-2.0.139, and llvm-2335.9

Closes Homebrew/homebrew#8482.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2011-11-07 14:02:57 -06:00

13 lines
325 B
Ruby

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