blob: e9415513494a20e61e7975f551798468fa33dd68 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
require "formula"
class Xa < Formula
homepage "http://www.floodgap.com/retrotech/xa/"
url "http://www.floodgap.com/retrotech/xa/dists/xa-2.3.6.tar.gz"
sha1 "f4472003c939e94f28f61ce680c5b762f8ba41e1"
def install
system "make", "CC=#{ENV.cc}",
"CFLAGS=#{ENV.cflags}",
"DESTDIR=#{prefix}",
"install"
end
test do
(testpath/"foo.a").write "jsr $ffd2\n"
system "#{bin}/xa", "foo.a"
code = File.open("a.o65", "rb") { |f| f.read.unpack("C*") }
assert_equal [0x20, 0xd2, 0xff], code
end
end
|