Build hyprpolkitagent manually
Some checks failed
Build container image / Build and push image (pull_request) Failing after 3m6s

This commit is contained in:
2025-11-15 21:41:13 -05:00
parent 30ceec2232
commit eb262849fc

View File

@@ -8,7 +8,6 @@ dnf5 -y copr enable errornointernet/quickshell
dnf5 -y install \ dnf5 -y install \
aquamarine \ aquamarine \
hyprland-git \ hyprland-git \
hyprpolkitagent \
hyprshot \ hyprshot \
xdg-desktop-portal-hyprland \ xdg-desktop-portal-hyprland \
hyprsysteminfo \ hyprsysteminfo \
@@ -39,3 +38,9 @@ git clone https://github.com/hyprwm/hyprqt6engine.git /tmp/hyprqt6engine
cd /tmp/hyprqt6engine cd /tmp/hyprqt6engine
cmake --no-warn-unused-cli -DCMAKE_BUILD_TYPE:STRING=Release -DCMAKE_INSTALL_PREFIX:PATH=/usr -S . -B ./build 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` 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`