diff options
| -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 | 
