The following commit has been merged in the rott branch:
commit 0f70a9482a3e0d36da0de9d318259d8766a1c3f8
Author: Jon Dowland <[email protected]>
Date:   Wed Feb 3 15:09:30 2010 +0000

    gdp_unzip: add suppor for 7za

diff --git a/lib/game-data-packager-shared b/lib/game-data-packager-shared
index 950747a..892ae58 100644
--- a/lib/game-data-packager-shared
+++ b/lib/game-data-packager-shared
@@ -190,6 +190,10 @@ fi
 gdp_unzip() {
     zipfile="$1"
     shift
+    if which 7za >/dev/null; then
+        debug "using 7za"
+        7za e -y "$zipfile" "$@" >/dev/null
+    fi
     if which 7z >/dev/null; then
         debug "using 7z"
         7z e -y "$zipfile" "$@" >/dev/null

-- 
Installer for game data files

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

Reply via email to