mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-05 21:15:59 +01:00
3504bb587d
Check that the pkg-config file is available. This will be required in the future to check whether xwayland supports features such as -listenfd, -initfd or -verbose. If there's no pkg-config file, check that the Xwayland executable is available. This effectively makes our relationship with xwayland closer to what a dynamic library is: checked at build-time, but can be overridden at run-time.
33 lines
732 B
YAML
33 lines
732 B
YAML
image: alpine/edge
|
|
packages:
|
|
- eudev-dev
|
|
- ffmpeg-dev
|
|
- libinput-dev
|
|
- libxkbcommon-dev
|
|
- mesa-dev
|
|
- meson
|
|
- pixman-dev
|
|
- util-linux-dev
|
|
- wayland-dev
|
|
- wayland-protocols
|
|
- xcb-util-image-dev
|
|
- xcb-util-renderutil-dev
|
|
- xcb-util-wm-dev
|
|
- xorg-server-xwayland
|
|
sources:
|
|
- https://github.com/swaywm/wlroots
|
|
tasks:
|
|
- setup: |
|
|
cd wlroots
|
|
meson build -Dauto_features=enabled -Dlogind=disabled -Dlibseat=disabled -Dxcb-errors=disabled
|
|
- build: |
|
|
cd wlroots
|
|
ninja -C build
|
|
sudo ninja -C build install
|
|
- build-features-disabled: |
|
|
cd wlroots
|
|
meson build --reconfigure -Dauto_features=disabled
|
|
ninja -C build
|
|
- tinywl: |
|
|
cd wlroots/tinywl
|
|
make
|