blob: 07febca76efcbe5600357db02aa80f2b097811c4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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
|