From eb262849fc925c6157466ae4cc06cb1b001cf64b Mon Sep 17 00:00:00 2001 From: Eriq Taing Date: Sat, 15 Nov 2025 21:41:13 -0500 Subject: [PATCH] Build hyprpolkitagent manually --- build_files/dnf/hyprland.sh | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/build_files/dnf/hyprland.sh b/build_files/dnf/hyprland.sh index 43ae631..064183c 100755 --- a/build_files/dnf/hyprland.sh +++ b/build_files/dnf/hyprland.sh @@ -8,7 +8,6 @@ dnf5 -y copr enable errornointernet/quickshell dnf5 -y install \ aquamarine \ hyprland-git \ - hyprpolkitagent \ hyprshot \ xdg-desktop-portal-hyprland \ hyprsysteminfo \ @@ -39,3 +38,9 @@ git clone https://github.com/hyprwm/hyprqt6engine.git /tmp/hyprqt6engine cd /tmp/hyprqt6engine cmake --no-warn-unused-cli -DCMAKE_BUILD_TYPE:STRING=Release -DCMAKE_INSTALL_PREFIX:PATH=/usr -S . -B ./build cmake --build ./build --config Release --target all -j`nproc 2>/dev/null || getconf NPROCESSORS_CONF` + +# compile hyprpolkitagent manually +git clone https://github.com/hyprwm/hyprpolkitagent.git /tmp/hyprpolkitagent +cd /tmp/hyprpolkitagent +cmake --no-warn-unused-cli -DCMAKE_BUILD_TYPE:STRING=Release -DCMAKE_INSTALL_PREFIX:PATH=/usr -S . -B ./build +cmake --build ./build --config Release --target all -j`nproc 2>/dev/null || getconf NPROCESSORS_CONF`