13 lines
756 B
Bash
13 lines
756 B
Bash
|
export WINEARCH=win64
|
||
|
export winVer="win7"
|
||
|
get_installer "simple fighter.exe" "https://tsatria03.itch.io/simple-fighter"
|
||
|
if [[ ! -r "${cache}/simple-fighter-sounds.7z" ]] && [[ ! -r "${cache}/sounds.7z" ]]; then
|
||
|
get_installer "sounds.7z" "https://tsatria03.itch.io/simple-fighter"
|
||
|
mv "${cache}/sounds.7z" "${cache}/simple-fighter-sounds.7z"
|
||
|
fi
|
||
|
install_wine_bottle
|
||
|
7z x -o"$WINEPREFIX/drive_c/Program Files/simple fighter" "${cache}/simple fighter.exe"
|
||
|
7z x -o"$WINEPREFIX/drive_c/Program Files/simple fighter/sounds" "${cache}/simple-fighter-sounds.7z"
|
||
|
find "${WINEPREFIX}/drive_c/Program Files/bf" -type f -name 'nvdaControllerClient64.dll' -exec cp -v "${cache}/nvda2speechd64.dll" "{}" \;
|
||
|
add_launcher "c:\Program Files\simple fighter\game.exe"
|