blob: dc5d83ec24ec2e2daf1a8db44adadcb8c62dc246 (
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.16.2.tar.gz'
  homepage 'http://code.google.com/p/bedtools/'
  sha1 'f9580cc9394713e0575fd73492ed6bf64a2256c6'
  head 'https://github.com/arq5x/bedtools.git'
  def install
    system "make all"
    bin.install Dir['bin/*']
  end
end
  |