aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/bedtools.rb
blob: aa4184467371c275f6ed71f6194cb334b9b957a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require 'formula'

class Bedtools < Formula
  homepage 'http://code.google.com/p/bedtools/'
  url 'http://bedtools.googlecode.com/files/BEDTools.v2.17.0.tar.gz'
  sha1 '1b1de3c35394a423f9ad98a9957a8853b426a578'

  head 'https://github.com/arq5x/bedtools.git'

  def install
    system "make all"
    prefix.install 'bin'
  end
end