homebrew-core/Formula/zxcc.rb

37 lines
1.2 KiB
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"
bottle do
sha256 "79aa0631d52d2d69ae554319db0027ffd59f2baa3d1c35473925f72a5c1965e3" => :sierra
sha256 "11bd1697b8a6b5a3a77ce417d35ad7e1da9e6df18a36ebccfa18a47ce470d3cb" => :el_capitan
sha256 "824c8a2511a55f9fc00b7058247e3e76d9579c14d20f2d17b5e57aaf1388671f" => :yosemite
sha256 "94203911967d0818075168a3734fb1f756e5ba0ecddac30e50dac36319d38f44" => :mavericks
end
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