aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/bedtools.rb
blob: 3c2e039179a91f77a50fad662a3def4ef356ff7f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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