homebrew-core/Formula/xa.rb
Matthew Callis c2997b1534 Adding xa (xa65) portable cross-assembler.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2011-04-18 22:25:39 -07:00

16 lines
350 B
Ruby

require 'formula'
class Xa < Formula
url 'http://www.floodgap.com/retrotech/xa/dists/xa-2.3.5.tar.gz'
homepage 'http://www.floodgap.com/retrotech/xa/'
md5 'edd15aa8674fb86225faf34e56d5cab2'
def install
inreplace 'Makefile' do |s|
s.change_make_var! 'DESTDIR', prefix
end
system "make"
system "make install"
end
end