diff options
| author | Eddie Ringle | 2012-09-08 01:46:26 -0400 |
|---|---|---|
| committer | Adam Vandenberg | 2012-09-09 12:34:51 -0700 |
| commit | a8466e2a004959a627d4a21ebbb3cf982ce64217 (patch) | |
| tree | 8a09a9bcb70dbdbbd2a53cfa2a0f7997cd40dac0 /Library | |
| parent | 8b890f6a6f813ff291ef648114aa69e2ffdf878f (diff) | |
| download | homebrew-a8466e2a004959a627d4a21ebbb3cf982ce64217.tar.bz2 | |
bam 0.4.0
Closes #14802.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/bam.rb | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Library/Formula/bam.rb b/Library/Formula/bam.rb new file mode 100644 index 000000000..aab6959ae --- /dev/null +++ b/Library/Formula/bam.rb @@ -0,0 +1,14 @@ +require 'formula' + +class Bam < Formula + homepage 'https://matricks.github.com/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 |
