1unpackPhase="unpackGog" 2 3unpackGog() { 4 runHook preUnpackGog 5 6 innoextract --silent --extract --exclude-temp "${src}" 7 8 find . -depth -print -execdir rename -f 'y/A-Z/a-z/' '{}' \; 9 10 runHook postUnpackGog 11}