95884bae22
Closes Homebrew/homebrew#42407. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
29 lines
855 B
Ruby
29 lines
855 B
Ruby
class Zxcc < Formula
|
|
desc "CP/M 2/3 emulator for cross-compiling and CP/M tools under UNIX"
|
|
homepage "http://www.seasip.info/Unix/Zxcc/"
|
|
url "http://www.seasip.info/Unix/Zxcc/zxcc-0.5.7.tar.gz"
|
|
sha256 "6095119a31a610de84ff8f049d17421dd912c6fd2df18373e5f0a3bc796eb4bf"
|
|
|
|
def install
|
|
system "./configure", "--prefix=#{prefix}"
|
|
system "make"
|
|
system "make", "check"
|
|
system "make", "install"
|
|
end
|
|
|
|
test do
|
|
code = [
|
|
0x11, 0x0b, 0x01, # 0100 ld de,010bh
|
|
0x0e, 0x09, # 0103 ld c,cwritestr
|
|
0xcd, 0x05, 0x00, # 0105 call bdos
|
|
0xc3, 0x00, 0x00, # 0108 jp warm
|
|
0x48, 0x65, 0x6c, # 010b db "Hel"
|
|
0x6c, 0x6f, 0x24 # 010e db "lo$"
|
|
].pack("c*")
|
|
|
|
path = testpath/"hello.com"
|
|
path.binwrite code
|
|
|
|
assert_equal "Hello", shell_output("#{bin}/zxcc #{path}").strip
|
|
end
|
|
end
|