Adding xa (xa65) portable cross-assembler.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
master
Matthew Callis 2011-04-18 21:56:07 -07:00 committed by Adam Vandenberg
parent 0f27613eb8
commit c2997b1534
1 changed files with 16 additions and 0 deletions

16
Formula/xa.rb Normal file
View File

@ -0,0 +1,16 @@
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