blob: 71c79e9b926953814b3c0efdfa4da780a32e7cdb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
require 'formula'
class Frotz < Formula
url 'http://downloads.sourceforge.net/project/frotz/frotz/2.43/frotz-2.43.tar.gz'
homepage 'http://frotz.sourceforge.net/'
md5 'efe51879e012b92bb8d5f4a82e982677'
def install
inreplace "Makefile" do |s|
s.remove_make_var! %w[CC OPTS]
s.change_make_var! "PREFIX", prefix
s.change_make_var! "CONFIG_DIR", etc
s.change_make_var! "MAN_PREFIX", share
end
system "make frotz"
system "make install"
end
end
|