]> git.pld-linux.org Git - packages/asylum.git/blame - asylum-makefile.patch
- just use cxx/cxxflags
[packages/asylum.git] / asylum-makefile.patch
CommitLineData
c12f0ce6 1--- asylum-0.2/Makefile~ 2007-07-25 12:59:11.000000000 +0200
2+++ asylum-0.2/Makefile 2007-07-25 12:59:09.000000000 +0200
3@@ -6,9 +6,9 @@
4
5 RESOURCES=data/Resources data/Ego data/Psyche data/Id data/Voices
6
7-INSTALLBIN=/usr/games/asylum
8-INSTALLRESOURCEPATH=/usr/share/games/asylum
9-INSTALLHISCORES=/var/games/asylum
10+INSTALLBIN=$(DESTDIR)/usr/bin/
11+INSTALLRESOURCEPATH=$(DESTDIR)/usr/share/asylum
12+INSTALLHISCORES=$(DESTDIR)/var/asylum
13
14 INSTALLGROUP=games
15
16@@ -16,21 +16,22 @@
17 default: build
18
19 $(INSTALLBIN): asylum Makefile
20+ mkdir -p $(INSTALLBIN)
21 cp asylum $(INSTALLBIN)
22- chgrp $(INSTALLGROUP) $(INSTALLBIN)
23- chmod g+s $(INSTALLBIN)
24- chmod a+x $(INSTALLBIN)
25+# chgrp $(INSTALLGROUP) $(INSTALLBIN)
26+# chmod g+s $(INSTALLBIN)
27+# chmod a+x $(INSTALLBIN)
28
29 $(INSTALLRESOURCEPATH): $(RESOURCES) Makefile
30 mkdir -p $(INSTALLRESOURCEPATH)
31 cp -r $(RESOURCES) $(INSTALLRESOURCEPATH)/
32- chgrp -R $(INSTALLGROUP) $(INSTALLRESOURCEPATH)/
33- chmod -R a+rx $(INSTALLRESOURCEPATH)/
34+# chgrp -R $(INSTALLGROUP) $(INSTALLRESOURCEPATH)/
35+# chmod -R a+rx $(INSTALLRESOURCEPATH)/
36
37 $(INSTALLHISCORES): Makefile
38 mkdir -p $(INSTALLHISCORES)
39- chgrp $(INSTALLGROUP) $(INSTALLHISCORES)
40- chmod g+rwx,o-rwx $(INSTALLHISCORES)
41+# chgrp $(INSTALLGROUP) $(INSTALLHISCORES)
42+# chmod g+rwx,o-rwx $(INSTALLHISCORES)
43
44 install-binary: $(INSTALLBIN)
45
This page took 0.125048 seconds and 4 git commands to generate.