Added Crazy Party. Did a little more work on the setup.sh script.
This commit is contained in:
parent
ab5626954c
commit
69c8ca4b71
@ -273,6 +273,7 @@ gameList=(
|
|||||||
"Adrian's Doom"
|
"Adrian's Doom"
|
||||||
"Battle Zone"
|
"Battle Zone"
|
||||||
"Bloodshed"
|
"Bloodshed"
|
||||||
|
"Crazy Party"
|
||||||
"Easter Quest"
|
"Easter Quest"
|
||||||
"Kitchensinc Games"
|
"Kitchensinc Games"
|
||||||
"Light Cars"
|
"Light Cars"
|
||||||
@ -284,6 +285,7 @@ gameList=(
|
|||||||
"Survive the Wild"
|
"Survive the Wild"
|
||||||
"Swamp"
|
"Swamp"
|
||||||
"The Blind Swordsman"
|
"The Blind Swordsman"
|
||||||
|
"The Road to Rage"
|
||||||
"Technoshock"
|
"Technoshock"
|
||||||
"Top Speed 3"
|
"Top Speed 3"
|
||||||
"Q9"
|
"Q9"
|
||||||
@ -341,6 +343,14 @@ case "${game}" in
|
|||||||
download "http://www.samtupy.com/games/bloodshed.exe"
|
download "http://www.samtupy.com/games/bloodshed.exe"
|
||||||
cp "${cache}/bloodshed.exe" "$WINEPREFIX/drive_c/Program Files/"
|
cp "${cache}/bloodshed.exe" "$WINEPREFIX/drive_c/Program Files/"
|
||||||
;;
|
;;
|
||||||
|
"Crazy Party")
|
||||||
|
export winVer="win7"
|
||||||
|
install_wine_bottle speechsdk
|
||||||
|
download "http://pragmapragma.free.fr/crazy-party/Crazy-Party-beta73.zip"
|
||||||
|
unzip -d "$WINEPREFIX/drive_c/Program Files" "${cache}/Crazy-Party-beta73.zip"
|
||||||
|
rm -f "$WINEPREFIX/drive_c/Program Files/Crazy-Party-beta73/nvdaControllerClient32.dll"
|
||||||
|
add_launcher "c:\Program Files\Crazy-Party-beta73\Crazy Party.exe"
|
||||||
|
;;
|
||||||
"Easter Quest")
|
"Easter Quest")
|
||||||
install_wine_bottle
|
install_wine_bottle
|
||||||
download "https://agarchive.net/games/mt/easter%20quest%20setup.exe"
|
download "https://agarchive.net/games/mt/easter%20quest%20setup.exe"
|
||||||
@ -423,6 +433,17 @@ case "${game}" in
|
|||||||
unzip -d "$WINEPREFIX/drive_c/Program Files" "${cache}/theblindswordsmanPC.zip"
|
unzip -d "$WINEPREFIX/drive_c/Program Files" "${cache}/theblindswordsmanPC.zip"
|
||||||
add_launcher "c:\Program Files\TheBlindSwordsman.exe"
|
add_launcher "c:\Program Files\TheBlindSwordsman.exe"
|
||||||
;;
|
;;
|
||||||
|
"The Road to Rage")
|
||||||
|
if [[ "$(uname -m)" != "x86_64" ]]; then
|
||||||
|
echo "Sorry, this game is only supported on 64 bit systems."
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
export WINEARCH=win64
|
||||||
|
install_wine_bottle speechsdk
|
||||||
|
download "https://iamtalon.me/games/rtr_ultimate.zip"
|
||||||
|
unzip -d "$WINEPREFIX/drive_c/Program Files" "${cache}/rtr_ultimate.zip"
|
||||||
|
add_launcher "c:\Program Files\rtr_Ultimate\trtr.exe"
|
||||||
|
;;
|
||||||
"Technoshock")
|
"Technoshock")
|
||||||
install_wine_bottle
|
install_wine_bottle
|
||||||
download "http://tiflocomp.ru/download/games/technoshock_140b_en.zip" "http://tiflocomp.ru/download/games/technoshock140b_en_update.zip"
|
download "http://tiflocomp.ru/download/games/technoshock_140b_en.zip" "http://tiflocomp.ru/download/games/technoshock140b_en_update.zip"
|
||||||
|
7
setup.sh
7
setup.sh
@ -18,6 +18,13 @@ configure_arch() {
|
|||||||
sudo pacman -Sy --needed ${packageList[*]}
|
sudo pacman -Sy --needed ${packageList[*]}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
configure_debian() {
|
||||||
|
declare -a packageList=(winehq-stable)
|
||||||
|
# make sure 32 bit libraries are available
|
||||||
|
sudo dpkg --add-architecture i386
|
||||||
|
sudo apt install --install-recommends ${packageList[*]}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
distro="$(head -1 /etc/issue | cut -d ' ' -f1)"
|
distro="$(head -1 /etc/issue | cut -d ' ' -f1)"
|
||||||
distro="${distro,,}"
|
distro="${distro,,}"
|
||||||
|
Loading…
Reference in New Issue
Block a user