Added game Zombowl.

This commit is contained in:
Storm Dragon 2024-10-05 20:15:18 -04:00
parent f1e5e756f6
commit de189828af

View File

@ -549,6 +549,7 @@ gameList=(
"Upheaval Commandline" "Upheaval Commandline"
"Upheaval Gui" "Upheaval Gui"
"Wurmus" "Wurmus"
"Zombowl"
) )
# Check for required packages # Check for required packages
@ -940,6 +941,21 @@ case "${game}" in
unzip -d "${installPath}/Wurmus" "${cache}/Wurmus-linux-x64.zip" unzip -d "${installPath}/Wurmus" "${cache}/Wurmus-linux-x64.zip"
add_launcher "${installPath}/Wurmus/Wurmus" add_launcher "${installPath}/Wurmus/Wurmus"
;; ;;
"Zombowl")
architecture="$(uname -m)"
if [[ "${architecture}" == "aarch64" ]]; then
pkgname="Zombowl-Linux-aarch64.zip"
elif [[ "${architecture}" == "x86_64" ]]; then
pkgname="Zombowl-Linux-X86_64.zip"
else
echo "Architecture ${architecture} is not supported."
exit 1
fi
get_installer "${pkgname}" "https://stormdragon2976.itch.io/zombowl"
mkdir -p "${installPath}/"
unzip -d "${installPath}/" "${cache}/${pkgname}"
add_launcher "${installPath}/${pkgname%.*}/Zombowl"
;;
"Donate") "Donate")
open_url "https://ko-fi.com/stormux" open_url "https://ko-fi.com/stormux"
;; ;;