summaryrefslogtreecommitdiff
path: root/mines-of-titan/debian/rules
diff options
context:
space:
mode:
authorB Stack <bgstack15@gmail.com>2019-09-01 19:00:15 -0400
committerB Stack <bgstack15@gmail.com>2019-09-01 19:00:15 -0400
commit3deac51937349050ade50edc2ae047525f543daa (patch)
treefe36c2731ea187b41b74822dac64db16a223b54a /mines-of-titan/debian/rules
parentadd mines-of-titan (diff)
downloadstackrpms-3deac51937349050ade50edc2ae047525f543daa.tar.gz
stackrpms-3deac51937349050ade50edc2ae047525f543daa.tar.bz2
stackrpms-3deac51937349050ade50edc2ae047525f543daa.zip
mines-of-titan 0.0.3
set USE_ORIG=1 so a new installation will actually use the brand-new disk contents for maps and savegames.
Diffstat (limited to 'mines-of-titan/debian/rules')
-rwxr-xr-xmines-of-titan/debian/rules6
1 files changed, 4 insertions, 2 deletions
diff --git a/mines-of-titan/debian/rules b/mines-of-titan/debian/rules
index 882e64b..1c4f9b4 100755
--- a/mines-of-titan/debian/rules
+++ b/mines-of-titan/debian/rules
@@ -5,11 +5,13 @@
#export DEB_CFLAGS_MAINT_APPEND = -Wall -pedantic
#export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed
+export USE_ORIG=true
+
%:
dh $@
-#override_dh_auto_install:
-# dh_auto_install -- prefix=/usr
+override_dh_auto_install:
+ dh_auto_install -- -e prefix=/usr
#override_dh_install:
# dh_install --list-missing -X.pyc -X.pyo
bgstack15