blob: 318d651655b8e409fd308be6a680d23a66791dba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
image: alpine/edge
packages:
- eudev-dev
- freerdp-dev
- ffmpeg-dev
- libcap-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
|