blob: 27c5b9a42a21be2f16ea4d51a863c315a1d7d317 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
require 'formula'
class Unnethack < Formula
homepage 'http://sourceforge.net/apps/trac/unnethack/'
url 'https://downloads.sourceforge.net/project/unnethack/unnethack/3.6.1/unnethack-3.6.1-20120205.tar.gz'
md5 '675c00d776e513d5aedaf11f071af569'
skip_clean "var/unnethack/bones"
skip_clean "var/unnethack/level"
skip_clean "var/unnethack/saves"
def install
system "./configure", "--prefix=#{prefix}",
"--with-owner=#{`id -un`}", "--with-group=admin",
"--enable-wizmode=#{`id -un`}"
system "make install"
end
end
|