[SCM] Installer for game data files branch, master, updated. 2f1f027bc6b48d3230ca299719c5b28715cb56ce
Simon McVittie
smcv at debian.org
Thu Jul 14 08:09:23 UTC 2011
The following commit has been merged in the master branch:
commit 318d7f32307a04d9c95b02d897f28b02637035c5
Author: Simon McVittie <smcv at debian.org>
Date: Thu Jul 14 08:47:47 2011 +0100
quake: allow 1.01 CDs to contain upper-case filenames
Unpacking from my CD seems to produce upper-case filenames, at least
with jlha(1).
diff --git a/supported/quake b/supported/quake
index 82ef8c9..9312cbf 100644
--- a/supported/quake
+++ b/supported/quake
@@ -131,7 +131,13 @@ cdrom_method() {
)
pak0="$WORKDIR/id1/pak0.pak"
+ if ! test -f "$pak0"; then
+ pak0="$WORKDIR/ID1/PAK0.PAK"
+ fi
pak1="$WORKDIR/id1/pak1.pak"
+ if ! test -f "$pak1"; then
+ pak1="$WORKDIR/ID1/PAK1.PAK"
+ fi
# This CD contains version 1.01
pak0sum=85fc9cee2035b66290da1e33be2ac86b
pak1sum=d76b3e5678f0b64ac74ce5e340e6a685
--
Installer for game data files
More information about the Pkg-games-commits
mailing list