From af52fb3d3267579d450fcb860007448bfff2763c Mon Sep 17 00:00:00 2001 From: cobalt2727 <60624944+cobalt2727@users.noreply.github.com> Date: Tue, 13 Aug 2024 19:53:01 -0500 Subject: [PATCH] melonDS: add QT SVG libraries how on earth did this pass before this on the runners but not on someone's actual hardware --- scripts/games_and_emulators/melonDS.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/games_and_emulators/melonDS.sh b/scripts/games_and_emulators/melonDS.sh index 9f8c3f7d..c6d068df 100755 --- a/scripts/games_and_emulators/melonDS.sh +++ b/scripts/games_and_emulators/melonDS.sh @@ -29,14 +29,14 @@ bionic) ubuntu_ppa_installer "ubuntu-toolchain-r/test" || error "PPA failed to install" # sudo apt install cmake gcc-11 g++-11 qt5123d qt512base qt512canvas3d qt512declarative qt512gamepad qt512graphicaleffects qt512imageformats qt512multimedia qt512xmlpatterns -y || error "Could not install dependencies" - sudo apt install -y cmake gcc-11 g++-11 qt515base qt515multimedia qt515gamepad || error "Could not install dependencies" + sudo apt install -y cmake gcc-11 g++-11 qt515base qt515multimedia qt515gamepad qt515svg || error "Could not install dependencies" ;; *) package_available qt5-default if [[ $? == "0" ]]; then - sudo apt install -y qt5-default qtbase5-private-dev qtmultimedia5-dev || error "Failed to install dependencies" + sudo apt install -y qt5-default qtbase5-private-dev qtmultimedia5-dev libqt5svg5-dev || error "Failed to install dependencies" else - sudo apt install -y qtbase5-dev qtchooser qtbase5-private-dev qtmultimedia5-dev || error "Failed to install dependencies" + sudo apt install -y qtbase5-dev qtchooser qtbase5-private-dev qtmultimedia5-dev libqt5svg5-dev || error "Failed to install dependencies" fi sudo apt install -y cmake gcc g++ || error "Could not install dependencies" ;;