From f3ff34bf78114487e190e12e8ec3f3680276fb9f Mon Sep 17 00:00:00 2001 From: cobalt2727 <60624944+cobalt2727@users.noreply.github.com> Date: Thu, 12 Aug 2021 08:40:23 -0500 Subject: [PATCH 1/3] fix dependencies for Ubuntu 21.04+/Debian 11+ This should not break compatibility with older versions qt5-default no longer exists as a package in apt repositories --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 25fc7b5e1..d036e1052 100644 --- a/README.md +++ b/README.md @@ -74,7 +74,8 @@ NFS files dumped from Metroid Prime Trilogy on Wii U VC can be used directly wit ``` build-essential curl git ninja-build clang lld zlib1g-dev libcurl4-openssl-dev \ libglu1-mesa-dev libdbus-1-dev libvulkan-dev libxi-dev libxrandr-dev libasound2-dev libpulse-dev \ - libudev-dev libpng-dev libncurses5-dev cmake libx11-xcb-dev python3 python-is-python3 qt5-default + libudev-dev libpng-dev libncurses5-dev cmake libx11-xcb-dev python3 python-is-python3 \ + qtbase5-dev qtchooser qt5-qmake qtbase5-dev-tools libclang-dev ``` * Arch Linux packages ``` From ff438d35b92fe59f67d50c6b687c70e42519bd1d Mon Sep 17 00:00:00 2001 From: BoofOof32 <66644514+BoofOof32@users.noreply.github.com> Date: Thu, 5 Aug 2021 12:14:40 -0700 Subject: [PATCH 2/3] Add Fedora packages to README Build Prerequisites: Added Fedora packages --- README.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index d036e1052..09b2a0919 100644 --- a/README.md +++ b/README.md @@ -81,7 +81,15 @@ NFS files dumped from Metroid Prime Trilogy on Wii U VC can be used directly wit ``` base-devel cmake ninja llvm vulkan-headers python3 qt6 clang lld alsa-lib libpulse libxrandr ``` - + * Fedora packages + ``` + cmake vulkan-headers ninja-build clang-devel llvm-devel libpng-devel qt6-qtbase-devel + qt6-linguist qt6-qttools-devel qt6-qtscxml-devel qt6-qtsvg-devel qt6-qt5compat-devel + ``` + * It's also important that you install dev tools and library packages + ``` + sudo dnf groupinstall "Development Tools" "Development Libraries" + ``` ### Prep Directions ```sh From b4b0083aedb90cc5ad2b40ca06bd204235684b73 Mon Sep 17 00:00:00 2001 From: BoofOof32 <66644514+BoofOof32@users.noreply.github.com> Date: Thu, 5 Aug 2021 22:28:06 -0700 Subject: [PATCH 3/3] Update README.md Fedora packages: a bit rewording on the Developer tools and libraries --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 09b2a0919..b5052dc68 100644 --- a/README.md +++ b/README.md @@ -86,7 +86,7 @@ NFS files dumped from Metroid Prime Trilogy on Wii U VC can be used directly wit cmake vulkan-headers ninja-build clang-devel llvm-devel libpng-devel qt6-qtbase-devel qt6-linguist qt6-qttools-devel qt6-qtscxml-devel qt6-qtsvg-devel qt6-qt5compat-devel ``` - * It's also important that you install dev tools and library packages + * It's also important that you install the developer tools and libraries ``` sudo dnf groupinstall "Development Tools" "Development Libraries" ```