mirror of
https://github.com/swaywm/sway.git
synced 2025-04-03 19:07:45 +03:00
The "xorg-server-xwayland" package has become "xorg-xwayland" in Arch.
Our egl requirement was previously satisfied by xorg-server-xwayland's
dependency on libgl, which "xorg-xwayland" does not have. So add the
libegl dependency as well.
(cherry picked from commit ba943c694c
)
31 lines
559 B
YAML
31 lines
559 B
YAML
image: archlinux
|
|
packages:
|
|
- cairo
|
|
- gdk-pixbuf2
|
|
- json-c
|
|
- libegl
|
|
- libinput
|
|
- libxcb
|
|
- libxkbcommon
|
|
- meson
|
|
- pango
|
|
- scdoc
|
|
- wayland
|
|
- wayland-protocols
|
|
- xcb-util-image
|
|
- xorg-xwayland
|
|
sources:
|
|
- https://github.com/swaywm/sway
|
|
- https://github.com/swaywm/wlroots
|
|
tasks:
|
|
- wlroots: |
|
|
cd wlroots
|
|
meson --prefix=/usr build -Dexamples=false
|
|
ninja -C build
|
|
sudo ninja -C build install
|
|
- setup: |
|
|
cd sway
|
|
meson build -Dauto_features=enabled
|
|
- build: |
|
|
cd sway
|
|
ninja -C build
|