a163b159ed
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>
13 lines
325 B
Ruby
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
|