Submitting a native Linux GOG installer

This results in broken installers:

exe: game/start.sh
files:
- game: N/A:Plese select the GOG.com Linux installer
- unzip: http://lutris.net/files/tools/unzip.tar.gz
installer:
- extract:
    dst: $CACHE
    file: $unzip
- execute:
    args: $game -d "$GAMEDIR" "data/noarch/*"
    description: Extracting game data, it will take a while...
    file: $CACHE/unzip
- rename:
    dst: $GAMEDIR/game
    src: $GAMEDIR/data/noarch

This is what should be submitted:

files:
- goginstaller: N/A:Please select the GOG.com Linux installer
game:
  exe: start.sh
installer:
- extract:
    dst: $CACHE/GOG
    file: goginstaller
    format: zip
- merge:
    dst: $GAMEDIR
    src: $CACHE/GOG/data/noarch/
1 Like