summaryrefslogtreecommitdiff
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
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.
-rw-r--r--mines-of-titan/debian/changelog6
-rw-r--r--mines-of-titan/debian/debhelper-build-stamp1
-rw-r--r--mines-of-titan/debian/files2
-rwxr-xr-xmines-of-titan/debian/rules6
4 files changed, 10 insertions, 5 deletions
diff --git a/mines-of-titan/debian/changelog b/mines-of-titan/debian/changelog
index 8aae37b..70567d6 100644
--- a/mines-of-titan/debian/changelog
+++ b/mines-of-titan/debian/changelog
@@ -1,3 +1,9 @@
+mines-of-titan (0.0.3-1) albion; urgency=low
+
+ * Include option for using the original files
+
+ -- B Stack <bgstack15@gmail.com> Sun, 1 Sep 2019 18:14:44 -0400
+
mines-of-titan (0.0.2-1) obs; urgency=low
* Initial release.
diff --git a/mines-of-titan/debian/debhelper-build-stamp b/mines-of-titan/debian/debhelper-build-stamp
deleted file mode 100644
index c4cf7bd..0000000
--- a/mines-of-titan/debian/debhelper-build-stamp
+++ /dev/null
@@ -1 +0,0 @@
-mines-of-titan
diff --git a/mines-of-titan/debian/files b/mines-of-titan/debian/files
deleted file mode 100644
index 1079f97..0000000
--- a/mines-of-titan/debian/files
+++ /dev/null
@@ -1,2 +0,0 @@
-mines-of-titan_0.0.2-1_all.deb games optional
-mines-of-titan_0.0.2-1_amd64.buildinfo games optional
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