mirror of https://github.com/PCSX2/pcsx2.git
55 lines
1.5 KiB
Bash
Executable File
55 lines
1.5 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
SCRIPTDIR=$(dirname "${BASH_SOURCE[0]}")
|
|
source "$SCRIPTDIR/functions.sh"
|
|
|
|
set -e
|
|
|
|
ARCH=x86_64
|
|
KDE_BRANCH=6.5
|
|
BRANCH=22.08
|
|
FLAT_MANAGER_CLIENT_DIR="$HOME/.local/bin"
|
|
|
|
# Build packages. Mostly needed for flat-manager-client.
|
|
declare -a BUILD_PACKAGES=(
|
|
"flatpak"
|
|
"flatpak-builder"
|
|
"appstream-util"
|
|
"python3-aiohttp"
|
|
"python3-tenacity"
|
|
"python3-gi"
|
|
"gobject-introspection"
|
|
"libappstream-glib8"
|
|
"libappstream-glib-dev"
|
|
"libappstream-dev"
|
|
"gir1.2-ostree-1.0"
|
|
)
|
|
|
|
# Flatpak runtimes and SDKs.
|
|
declare -a FLATPAK_PACKAGES=(
|
|
"org.kde.Platform/${ARCH}/${KDE_BRANCH}"
|
|
"org.kde.Sdk/${ARCH}/${KDE_BRANCH}"
|
|
"org.freedesktop.Platform.ffmpeg-full/${ARCH}/${BRANCH}"
|
|
"org.freedesktop.Sdk.Extension.llvm16/${ARCH}/${BRANCH}"
|
|
)
|
|
|
|
retry_command sudo apt-get -qq update
|
|
|
|
# Install packages needed for building
|
|
echo "Will install the following packages for building - ${BUILD_PACKAGES[*]}"
|
|
retry_command sudo apt-get -y install "${BUILD_PACKAGES[@]}"
|
|
|
|
sudo flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
|
|
|
|
# Install packages needed for building
|
|
echo "Will install the following packages for building - ${FLATPAK_PACKAGES[*]}"
|
|
retry_command sudo flatpak -y install "${FLATPAK_PACKAGES[@]}"
|
|
|
|
echo "Downloading flat-manager-client"
|
|
mkdir -p "$FLAT_MANAGER_CLIENT_DIR"
|
|
pushd "$FLAT_MANAGER_CLIENT_DIR"
|
|
aria2c -Z "https://raw.githubusercontent.com/flatpak/flat-manager/master/flat-manager-client"
|
|
chmod +x flat-manager-client
|
|
echo "$FLAT_MANAGER_CLIENT_DIR" >> $GITHUB_PATH
|
|
popd
|