PortValhalla/scripts/Software/Godot/install.sh

38 lines
1 KiB
Bash
Raw Normal View History

2022-11-17 09:18:13 +00:00
#!/bin/bash
# Elevate script
if [ ! "$UID" -eq 0 ]
then
sudo bash "$BASH_SOURCE" "$USER";
2022-11-17 09:18:13 +00:00
else
tempDir="$(mktemp -d)";
archiveName="$(mktemp)";
destination="/var/lib/godot";
2022-11-17 09:18:13 +00:00
2023-01-23 15:16:26 +00:00
if [ -d "$destination" ]
then
rm -rf "$destination";
2022-11-17 09:18:13 +00:00
fi
wget https://github.com/godotengine/godot/releases/download/3.5.1-stable/Godot_v3.5.1-stable_mono_x11_64.zip -O "$archiveName";
unzip "$archiveName" -d "$tempDir";
mkdir -p "$destination";
mv "$tempDir"/*/* "$destination";
wget https://github.com/godotengine/godot/raw/3.5.1-stable/icon.svg -O "$destination/icon.svg";
2022-11-17 09:18:13 +00:00
rm -rf "$tempDir";
rm -f "$archiveName";
2022-11-17 09:18:13 +00:00
exeFile="$(find "$destination" -maxdepth 1 -perm -111 -type f)";
ln -s "$exeFile" /usr/local/bin/godot;
2022-11-17 09:18:13 +00:00
{
echo "[Desktop Entry]";
echo "Encoding=UTF-8";
echo "Type=Application";
echo "Terminal=false";
echo "Exec=$exeFile";
echo "Name=Godot Engine";
echo "Icon=$destination/icon.svg";
} > /usr/share/applications/godot.desktop;
2022-11-17 09:18:13 +00:00
fi