blob: c609bdcfa0c3a90fbff4ff3ee5bc95a089341736 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
require 'formula'
class Nazghul <Formula
url 'http://downloads.sourceforge.net/project/nazghul/nazghul/nazghul-0.7.0/nazghul-0.7.0.tar.gz'
homepage 'http://myweb.cableone.net/gmcnutt/nazghul.html'
md5 '3a3b08ee180163030bc9934d6fb40de8'
depends_on 'sdl'
depends_on 'sdl_image'
depends_on 'sdl_mixer'
depends_on 'libpng'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--disable-sdltest"
# Not sure why the ifdef is commented out in this file
inreplace "src/skill.c", "#include <malloc.h>", ""
system "make install"
end
def caveats; <<-EOS.undent
The built-in game for this engine is called "Haxima".
To run:
haxima.sh"
EOS
end
end
|