mirror of
https://github.com/RetroDECK/RetroDECK.git
synced 2025-01-06 01:45:39 +00:00
Compare commits
No commits in common. "2c2765115fe6c206347c595475698376048c558a" and "32209e5899583b0ce09513044afabc07d74fffb6" have entirely different histories.
2c2765115f
...
32209e5899
|
@ -10,21 +10,17 @@ done
|
||||||
|
|
||||||
case "$pkg_mgr" in
|
case "$pkg_mgr" in
|
||||||
apt)
|
apt)
|
||||||
# Aggiorna l'indice dei pacchetti, poi installa o aggiorna solo i pacchetti indicati
|
sudo apt install -y flatpak flatpak-builder p7zip-full xmlstarlet bzip2 curl jq
|
||||||
sudo apt update
|
|
||||||
sudo apt install --only-upgrade -y flatpak flatpak-builder p7zip-full xmlstarlet bzip2 curl jq
|
|
||||||
;;
|
;;
|
||||||
pacman)
|
pacman)
|
||||||
# Aggiorna i pacchetti specificati senza influenzare il resto del sistema
|
sudo pacman -S --noconfirm flatpak flatpak-builder p7zip xmlstarlet bzip2
|
||||||
sudo pacman -Syu --needed --noconfirm flatpak flatpak-builder p7zip xmlstarlet bzip2
|
|
||||||
;;
|
;;
|
||||||
rpm-ostree)
|
rpm-ostree)
|
||||||
echo "When using a distro with rpm-ostree, you shouldn't build directly on the host. Try using a distrobox."
|
echo "When using a distro with rpm-ostree, you shouldn't build directly on the host. Try using a distrobox."
|
||||||
exit 1
|
exit 1
|
||||||
;;
|
;;
|
||||||
dnf)
|
dnf)
|
||||||
# Aggiorna i pacchetti specificati senza influenzare il resto del sistema
|
sudo dnf install -y flatpak flatpak-builder p7zip p7zip-plugins xmlstarlet bzip2 curl
|
||||||
sudo dnf upgrade --refresh -y flatpak flatpak-builder p7zip p7zip-plugins xmlstarlet bzip2 curl
|
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
echo "Package manager $pkg_mgr not supported. Please open an issue."
|
echo "Package manager $pkg_mgr not supported. Please open an issue."
|
||||||
|
|
|
@ -715,13 +715,6 @@ modules:
|
||||||
buildsystem: simple
|
buildsystem: simple
|
||||||
build-commands:
|
build-commands:
|
||||||
|
|
||||||
# This prevents appstream-compose to fail
|
|
||||||
- |
|
|
||||||
if [ -d ${FLATPAK_DEST}/usr ]; then
|
|
||||||
mv -n ${FLATPAK_DEST}/usr/** ${FLATPAK_DEST}/share
|
|
||||||
rm -rf ${FLATPAK_DEST}/usr
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Initializing RO retrodeck config folder
|
# Initializing RO retrodeck config folder
|
||||||
- mkdir -p ${FLATPAK_DEST}/retrodeck
|
- mkdir -p ${FLATPAK_DEST}/retrodeck
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue