fix deps and remove multimedia

Signed-off-by: crueter <crueter@eden-emu.dev>
This commit is contained in:
crueter
2025-07-17 01:53:06 -04:00
parent 3309c70422
commit 965e4df919
2 changed files with 5 additions and 7 deletions

View File

@@ -82,7 +82,7 @@ jobs:
echo "BUILD_TYPE=Release" >> $GITHUB_ENV echo "BUILD_TYPE=Release" >> $GITHUB_ENV
echo "DEVEL=true" >> $GITHUB_ENV echo "DEVEL=true" >> $GITHUB_ENV
echo "USE_WEBENGINE=false" >> $GITHUB_ENV echo "USE_WEBENGINE=false" >> $GITHUB_ENV
echo "USE_MULTIMEDIA=true" >> $GITHUB_ENV echo "USE_MULTIMEDIA=false" >> $GITHUB_ENV
- name: Get Variables and Clone - name: Get Variables and Clone
uses: ./.github/workflows/clone uses: ./.github/workflows/clone
@@ -143,7 +143,7 @@ jobs:
echo "BUILD_TYPE=Release" >> $GITHUB_ENV echo "BUILD_TYPE=Release" >> $GITHUB_ENV
echo "DEVEL=true" >> $GITHUB_ENV echo "DEVEL=true" >> $GITHUB_ENV
echo "USE_WEBENGINE=false" >> $GITHUB_ENV echo "USE_WEBENGINE=false" >> $GITHUB_ENV
echo "USE_MULTIMEDIA=true" >> $GITHUB_ENV echo "USE_MULTIMEDIA=false" >> $GITHUB_ENV
- name: Get Variables and Clone - name: Get Variables and Clone
uses: ./.github/workflows/clone uses: ./.github/workflows/clone

View File

@@ -10,7 +10,7 @@ else
PKG_TYPE='aarch64.pkg.tar.xz' PKG_TYPE='aarch64.pkg.tar.xz'
fi fi
LLVM_URL="https://github.com/pkgforge-dev/llvm-libs-debloated/releases/download/continuous/llvm-libs-mini-$PKG_TYPE" LLVM_URL="https://github.com/pkgforge-dev/llvm-libs-debloated/releases/download/continuous/llvm-libs-nano-$PKG_TYPE"
FFMPEG_URL="https://github.com/pkgforge-dev/llvm-libs-debloated/releases/download/continuous/ffmpeg-mini-$PKG_TYPE" FFMPEG_URL="https://github.com/pkgforge-dev/llvm-libs-debloated/releases/download/continuous/ffmpeg-mini-$PKG_TYPE"
QT6_URL="https://github.com/pkgforge-dev/llvm-libs-debloated/releases/download/continuous/qt6-base-iculess-$PKG_TYPE" QT6_URL="https://github.com/pkgforge-dev/llvm-libs-debloated/releases/download/continuous/qt6-base-iculess-$PKG_TYPE"
LIBXML_URL="https://github.com/pkgforge-dev/llvm-libs-debloated/releases/download/continuous/libxml2-iculess-$PKG_TYPE" LIBXML_URL="https://github.com/pkgforge-dev/llvm-libs-debloated/releases/download/continuous/libxml2-iculess-$PKG_TYPE"
@@ -36,11 +36,8 @@ pacman -Syu --noconfirm \
nlohmann-json \ nlohmann-json \
patchelf \ patchelf \
python-pip \ python-pip \
qt6-5compat \
qt6-multimedia \
qt6-tools \ qt6-tools \
qt6-wayland \ qt6-wayland \
quazip-qt6 \
sdl2 \ sdl2 \
spirv-headers \ spirv-headers \
strace \ strace \
@@ -48,6 +45,7 @@ pacman -Syu --noconfirm \
vulkan-headers \ vulkan-headers \
vulkan-mesa-layers \ vulkan-mesa-layers \
vulkan-nouveau \ vulkan-nouveau \
vulkan-radeon \
wget \ wget \
wireless_tools \ wireless_tools \
xcb-util-cursor \ xcb-util-cursor \
@@ -59,7 +57,7 @@ pacman -Syu --noconfirm \
zsync zsync
if [ "$(uname -m)" = 'x86_64' ]; then if [ "$(uname -m)" = 'x86_64' ]; then
pacman -Syu --noconfirm vulkan-intel haskell-gnutls svt-av1 vulkan-radeon pacman -Syu --noconfirm vulkan-intel haskell-gnutls svt-av1
else else
pacman -Syu --noconfirm vulkan-freedreno vulkan-panfrost pacman -Syu --noconfirm vulkan-freedreno vulkan-panfrost
fi fi