From adafb65b26e0f61155e6c82f9b70292679a15f8f Mon Sep 17 00:00:00 2001 From: David Marzal <2069735+Marzal@users.noreply.github.com> Date: Tue, 13 Dec 2022 18:10:43 +0100 Subject: [PATCH 1/3] Add more info to readme Dependencies on Arch from own experience and for Ubunty as the instructions in the KDE Store, which is also added for reference in the README Thanks for the plasmoid! PD: It also works in pipeware with pulse "emulation" --- README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/README.md b/README.md index f9e473e..7a2ca46 100644 --- a/README.md +++ b/README.md @@ -11,3 +11,17 @@ cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release make sudo make install ``` + +## Compilation dependencies +### ArchLinux +``` +sudo pacman -S extra-cmake-modules +``` + +### Ubuntu +``` +sudo apt install libpulse-dev libfftw3-dev +``` + +# KDE Store +https://store.kde.org/p/1953779 From 9632faa8b631aa21f28aec845152d5fab526ae2d Mon Sep 17 00:00:00 2001 From: David Marzal <2069735+Marzal@users.noreply.github.com> Date: Sat, 8 Mar 2025 09:28:59 +0100 Subject: [PATCH 2/3] Add Fedora deps --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index 7a2ca46..9cc3459 100644 --- a/README.md +++ b/README.md @@ -23,5 +23,10 @@ sudo pacman -S extra-cmake-modules sudo apt install libpulse-dev libfftw3-dev ``` +### Fedora +``` +sudo dnf install pulseaudio-libs-devel fftw-devel qt5-devel qt5-qtdeclarative-devel plasma-framework-devel extra-cmake-modules +``` + # KDE Store https://store.kde.org/p/1953779 From b69caad10be690429e37ea2c5b0d7fb6b68f7c0e Mon Sep 17 00:00:00 2001 From: David Marzal <2069735+Marzal@users.noreply.github.com> Date: Sat, 8 Mar 2025 09:38:49 +0100 Subject: [PATCH 3/3] Add cloning instructions --- README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 9cc3459..105d24f 100644 --- a/README.md +++ b/README.md @@ -5,14 +5,15 @@ # Installing ``` -mkdir build -cd build +git clone https://github.com/Marzal/plasma-analyzer.git +cd plasma-analyzer +mkdir build && cd build cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release make sudo make install ``` -## Compilation dependencies +## QT5 Compilation dependencies ### ArchLinux ``` sudo pacman -S extra-cmake-modules