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:
13
.install/Zombowl.sh
Normal file
13
.install/Zombowl.sh
Normal 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"
|
Reference in New Issue
Block a user