summary refs log blame commit diff
path: root/pkgs/build-support/setup-hooks/gog-unpack.sh
blob: 559b543fadfceb396cb7557c0b2e46727a5b8ed9 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11










                                                                
unpackPhase="unpackGog"

unpackGog() {
    runHook preUnpackGog

    innoextract --silent --extract --exclude-temp "${src}"

    find . -depth -print -execdir rename -f 'y/A-Z/a-z/' '{}' \;

    runHook postUnpackGog
}