updated install games function. Inallations are now handled in files in the .install directory. This may be horribly broken, for stability, use the master branch.

This commit is contained in:
Storm Dragon
2024-12-15 19:29:55 -05:00
parent 578c1bc7b1
commit ff140f4298
30 changed files with 296 additions and 4 deletions

13
.install/Zombowl.sh Normal file
View File

@ -0,0 +1,13 @@
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"