35 lines
938 B
Ruby
35 lines
938 B
Ruby
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"
|
|
|
|
bottle do
|
|
cellar :any
|
|
sha1 "7ec0b273b35f7e543cc6a1810a14e14062f81639" => :yosemite
|
|
sha1 "6b531fb8df899d603f93262f87cfdcb8001b8436" => :mavericks
|
|
sha1 "dce2512abc5625827a16becba635941b007c16dd" => :mountain_lion
|
|
end
|
|
|
|
def install
|
|
system "./make_unix.sh"
|
|
bin.install "bam"
|
|
end
|
|
|
|
test do
|
|
(testpath/"hello.c").write <<-EOS.undent
|
|
#include <stdio.h>
|
|
int main(void) { printf("hello\\n"); return 0; }
|
|
EOS
|
|
|
|
(testpath/"bam.lua").write <<-EOS.undent
|
|
settings = NewSettings()
|
|
objs = Compile(settings, Collect("*.c"))
|
|
exe = Link(settings, "hello", objs)
|
|
EOS
|
|
|
|
system "bam", "-v"
|
|
assert_equal "hello\n", shell_output("./hello")
|
|
end
|
|
end
|