core/pkgs/build-support/setup-hooks/gog-unpack.sh
2024-05-13 11:34:52 -04:00

12 lines
219 B
Bash

unpackPhase="unpackGog"
unpackGog() {
runHook preUnpackGog
innoextract --silent --extract --exclude-temp "${src}"
find . -depth -print -execdir rename -f 'y/A-Z/a-z/' '{}' \;
runHook postUnpackGog
}