Skip to content

Commit

Permalink
melonDS: add QT SVG libraries
Browse files Browse the repository at this point in the history
how on earth did this pass before this on the runners but not on someone's actual hardware
  • Loading branch information
cobalt2727 authored Aug 14, 2024
1 parent 8de10e1 commit af52fb3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scripts/games_and_emulators/melonDS.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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"
;;
Expand Down

1 comment on commit af52fb3

@theofficialgman
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

simple. qt svg wasn't required until 2 days ago melonDS-emu/melonDS@c6cab9e

Please sign in to comment.