This repository has been archived by the owner on Feb 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
You might need to run install_sm64_dependencies still.
- Loading branch information
1 parent
d5c8267
commit 92c9260
Showing
2 changed files
with
13 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#!/bin/bash | ||
echo "This script will install some required packages to run and build SM64 on Linux." | ||
echo "Package Manager [APT/DNF/PACMAN]: " | ||
read PACMAN | ||
PACMAN=${PACMAN^^} | ||
if [ "$PACMAN" == "APT" ]; then | ||
sudo apt install build-essential extra-cmake-modules cmake qtbase5-dev qtdeclarative5-dev libqt5svg5-dev qtquickcontrols2-5-dev qml-module-org-kde-kirigami2 kirigami2-dev libkf5i18n-dev gettext libkf5coreaddons-dev qml-module-qtquick-layouts | ||
elif [ "$PACMAN" == "DNF" ]; then | ||
sudo dnf groupinstall "Development Tools" "Development Libraries" | ||
sudo dnf install extra-cmake-modules cmake qt5-qtbase-devel qt5-qtdeclarative-devel qt5-qtquickcontrols2-devel kf5-kirigami2 kf5-kirigami2-devel kf5-ki18n-devel kf5-kcoreaddons-devel gettext | ||
elif [ "$PACMAN" == "PACMAN" ]; then | ||
sudo pacman -S base-devel extra-cmake-modules cmake kirigami2 kde-sdk-meta gettext | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters