blob: c6c05aef32d362c1e20afdb5ecd2b22c80aa3652 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
require 'formula'
class Bam < Formula
homepage 'http://matricks.github.io/bam/'
url 'https://github.com/downloads/matricks/bam/bam-0.4.0.tar.gz'
sha1 'c0f32ff9272d5552e02a9d68fbdd72106437ee69'
head 'https://github.com/matricks/bam.git'
def install
system "./make_unix.sh"
bin.install'bam'
end
end
|