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
Masafumi Max NAKANE 7ea75d1bac Upgrade, 0.8.0 -> 0.8.1.
Split the patches into several files.
Submitted by:	Matthew Hunt <mph@pobox.com>
(Closing PR #3003.)

Also, style tweaks on Makefile.
1997-03-31 11:27:27 +00:00

21 lines
612 B
Plaintext

--- 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 )