44 lines
1.4 KiB
Ruby
44 lines
1.4 KiB
Ruby
class Vc4asm < Formula
|
|
desc "Macro assembler for Broadcom VideoCore IV aka Raspberry Pi GPU"
|
|
homepage "http://maazl.de/project/vc4asm/doc/index.html"
|
|
url "https://github.com/maazl/vc4asm/archive/V0.2.1.tar.gz"
|
|
sha256 "c9ffb315961a634cef1a26620a73483e7b819a963374952046aa7099d7ceb25c"
|
|
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
sha256 "d3e5bf0d350fe121f98dc5f9382a540246a35aa6ba329738ff6d328537521311" => :el_capitan
|
|
sha256 "0f859510fcf092ac9aea3edf1a3bdca06fb33fbac058a6c6b07c4fe8485cf756" => :yosemite
|
|
sha256 "17e23f6685049ca463e555f56947f2694fd14d45ac3e5be7cc82475cae251ca9" => :mavericks
|
|
end
|
|
|
|
needs :cxx11
|
|
|
|
# Removes ELF support for OSX (merged upstream)
|
|
patch do
|
|
url "https://github.com/maazl/vc4asm/pull/7.patch"
|
|
sha256 "50e8d58bf406aed69c8e247cb447353cc7a9fb6d5c6c7862c6447bf28a4c8779"
|
|
end
|
|
patch do
|
|
url "https://github.com/maazl/vc4asm/commit/e2e855cd728f7f2eab45499dd251cf63db19c0cb.patch"
|
|
sha256 "72aa18f016669cdafec927b917f951f30c3f8946f1e8a4df1fd0016c171fa6d4"
|
|
end
|
|
|
|
def install
|
|
ENV.cxx11
|
|
cd "src" do
|
|
system "make"
|
|
end
|
|
bin.install %w[bin/vc4asm bin/vc4dis]
|
|
share.install "share/vc4.qinc"
|
|
end
|
|
|
|
test do
|
|
(testpath/"test.qasm").write <<-EOS.undent
|
|
mov -, sacq(9)
|
|
add r0, r4, ra1.unpack8b
|
|
add.unpack8a r0, r4, ra1
|
|
add r0, r4.8a, ra1
|
|
EOS
|
|
system "#{bin}/vc4asm", "-o test.hex", "-V", "#{share}/vc4.qinc", "test.qasm"
|
|
end
|
|
end
|