The following commit has been merged in the master branch:
commit 318d7f32307a04d9c95b02d897f28b02637035c5
Author: Simon McVittie <[email protected]>
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

_______________________________________________
Pkg-games-commits mailing list
[email protected]
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-games-commits

Reply via email to