mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-06 22:51:41 +00:00
7ea75d1bac
Split the patches into several files. Submitted by: Matthew Hunt <mph@pobox.com> (Closing PR #3003.) Also, style tweaks on Makefile.
21 lines
612 B
Plaintext
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 )
|