1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-06 22:51:41 +00:00
freebsd-ports/games/angband/files/patch-aa

21 lines
612 B
Plaintext
Raw Normal View History

--- Makefile.orig Mon Mar 31 20:08:53 1997
+++ Makefile Mon Mar 31 20:08:53 1997
@@ -0,0 +1,17 @@
+# My makefile for Angband
+# Matthew Hunt <mph@pobox.com>
+
+all: angband
+
+angband:
+ cd src && make
+
+install: angband
+ install -c -o games -g bin -m 4755 testing ${PREFIX}/bin/angband
+ mkdir -p ${PREFIX}/lib/angband
+ (cd lib && tar cf - * ) | (cd ${PREFIX}/lib/angband && tar xf - )
+# install -c lib/* ${PREFIX}/lib/angband
+ /usr/sbin/chown -R games.bin ${PREFIX}/lib/angband
+ (cd ${PREFIX}/lib/angband && \
+ /bin/chmod 755 apex bone data edit file help info xtra && \
+ /bin/chmod 1777 save user )