mirror of
https://github.com/RetroDECK/RetroDECK.git
synced 2025-02-18 12:25:38 +00:00
Added multidistro build support
This commit is contained in:
parent
5f0df8d242
commit
32de60c019
|
@ -9,7 +9,14 @@ echo "This script is helping the flatpak building in $INSTALL_DIR."
|
||||||
read -n 1 -r -s -p $'Press enter to continue...\n'
|
read -n 1 -r -s -p $'Press enter to continue...\n'
|
||||||
echo "Building RetroDECK, please stand by."
|
echo "Building RetroDECK, please stand by."
|
||||||
|
|
||||||
sudo pacman -S flatpak-builder
|
if command -v apt >/dev/null; then
|
||||||
|
sudo apt install flatpak-builder
|
||||||
|
elif command -v yum >/dev/null; then
|
||||||
|
sudo yum install flatpak-builder # not sure about this
|
||||||
|
else
|
||||||
|
sudo pacman -S flatpak-builder
|
||||||
|
fi
|
||||||
|
|
||||||
flatpak install org.kde.Sdk//5.15-21.08 org.kde.Platform//5.15-21.08
|
flatpak install org.kde.Sdk//5.15-21.08 org.kde.Platform//5.15-21.08
|
||||||
|
|
||||||
cd $INSTALL_DIR
|
cd $INSTALL_DIR
|
||||||
|
|
Loading…
Reference in a new issue