37 lines
1.3 KiB
Ruby
37 lines
1.3 KiB
Ruby
class Flasm < Formula
|
|
desc "Flash command-line assembler and disassembler"
|
|
homepage "http://www.nowrap.de/flasm.html"
|
|
url "http://www.nowrap.de/download/flasm16src.zip"
|
|
version "1.62"
|
|
sha256 "df1273a506e2479cf95775197f5b7fa94e29fe1e0aae5aa190ed5bbebc4be5c6"
|
|
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
sha256 "8b12bb8f245caede2fa69847f452e4d8cbf75d1e52ceaf168272239a318c528f" => :catalina
|
|
sha256 "4f2ad8d2f363f8509f3ec3f97f73773a5b21b893f954da011c431feb3c65aa02" => :mojave
|
|
sha256 "5461503d625b8b25339ac3a518c9079bfc92d4121760c61ef73f69020e2669b2" => :high_sierra
|
|
sha256 "423b77912442f613cec430a8eee149783047f6b1a32d82d4b2920969fb6ca77e" => :sierra
|
|
sha256 "44aa3b83ee62932fea2f1b3139b2fe391c59bba92f890121eca35e2736214b52" => :el_capitan
|
|
sha256 "b2ae27971e7fa4a731000eeda0cd7a8fb75cbe55d013af3c2d9d0cc3b2bc405f" => :yosemite
|
|
sha256 "73568b00e6ecdde3baa228ef27e2c43a4879cb15bfd3d0ca036510a5d2dcbd3a" => :mavericks
|
|
end
|
|
|
|
def install
|
|
system "make", "CC=#{ENV.cc}", "CFLAGS=#{ENV.cflags}"
|
|
bin.install "flasm"
|
|
end
|
|
|
|
test do
|
|
(testpath/"test").write <<~EOS
|
|
constants 'a', 'b'
|
|
push 'a', 'b'
|
|
getVariable
|
|
push 'b'
|
|
getVariable
|
|
multiply
|
|
setVariable
|
|
EOS
|
|
|
|
system "#{bin}/flasm", "-b", "test"
|
|
end
|
|
end
|