homebrew-core/Formula/bedtools.rb

15 lines
331 B
Ruby
Raw Normal View History

require 'formula'
class Bedtools < Formula
homepage 'http://code.google.com/p/bedtools/'
2012-11-04 16:27:06 +00:00
url 'http://bedtools.googlecode.com/files/BEDTools.v2.17.0.tar.gz'
sha1 '1b1de3c35394a423f9ad98a9957a8853b426a578'
2012-11-04 16:27:06 +00:00
2011-05-27 05:02:55 +00:00
head 'https://github.com/arq5x/bedtools.git'
def install
system "make all"
2012-11-04 16:27:06 +00:00
prefix.install 'bin'
end
end