aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/bedtools.rb
blob: 5b2296babe2055200e73507f36268c8b777c7e89 (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.12.0.tar.gz'
  homepage 'http://code.google.com/p/bedtools/'
  md5 'cc7839a96a7537a810bb645381a2ba8a'
  head 'git://github.com/arq5x/bedtools.git'

  def install
    system "make all"
    bin.install Dir['bin/*']
  end
end