mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-02 11:55:59 +01:00
906c0766df
This is simply a false sense of security, and is worse than just using setuid. CAP_SYS_ADMIN is an extremely serious capability that is effectively as powerful as root. It also required users to be in the input group, which allows any process to keylog the entire system.
26 lines
558 B
YAML
26 lines
558 B
YAML
image: alpine/edge
|
|
packages:
|
|
- eudev-dev
|
|
- ffmpeg-dev
|
|
- libinput-dev
|
|
- libxkbcommon-dev
|
|
- mesa-dev
|
|
- meson
|
|
- pixman-dev
|
|
- wayland-dev
|
|
- wayland-protocols
|
|
- xcb-util-image-dev
|
|
- xcb-util-wm-dev
|
|
sources:
|
|
- https://github.com/swaywm/wlroots
|
|
tasks:
|
|
- setup: |
|
|
cd wlroots
|
|
meson build -Dauto_features=enabled -Dlogind=disabled -Dxcb-errors=disabled
|
|
- build: |
|
|
cd wlroots
|
|
ninja -C build
|
|
- build-features-disabled: |
|
|
cd wlroots
|
|
meson build --reconfigure -Dauto_features=disabled
|
|
ninja -C build
|