545d8e2f78
Closes Homebrew/homebrew#26333. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
21 lines
557 B
Ruby
21 lines
557 B
Ruby
require 'formula'
|
|
|
|
class Z80dasm < Formula
|
|
homepage 'http://www.tablix.org/~avian/blog/articles/z80dasm/'
|
|
url 'http://www.tablix.org/~avian/z80dasm/z80dasm-1.1.3.tar.gz'
|
|
sha1 'da1e2525bc0db1b86e28f65ba510196998448ed1'
|
|
|
|
def install
|
|
system "./configure", "--prefix=#{prefix}"
|
|
system "make", "install"
|
|
end
|
|
|
|
test do
|
|
path = testpath/"a.bin"
|
|
path.open("wb") { |f| f.write [0xcd, 0x34, 0x12].pack("c*") }
|
|
|
|
output = `#{bin}/z80dasm #{path}`.strip
|
|
assert output.include?("call 01234h")
|
|
assert_equal 0, $?.exitstatus
|
|
end
|
|
end
|