mirror of
https://github.com/swaywm/sway.git
synced 2024-11-10 20:44:01 +01:00
39 lines
752 B
YAML
39 lines
752 B
YAML
|
image: alpine/edge
|
||
|
packages:
|
||
|
- cairo-dev
|
||
|
- eudev-dev
|
||
|
- gdk-pixbuf-dev
|
||
|
- json-c-dev
|
||
|
- libevdev-dev
|
||
|
- libinput-dev
|
||
|
- libxcb-dev
|
||
|
- libxkbcommon-dev
|
||
|
- mesa-dev
|
||
|
- meson
|
||
|
- pango-dev
|
||
|
- pixman-dev
|
||
|
- scdoc
|
||
|
- wayland-dev
|
||
|
- wayland-protocols
|
||
|
- xcb-util-image-dev
|
||
|
- xorg-server-xwayland
|
||
|
sources:
|
||
|
- https://github.com/swaywm/sway
|
||
|
- https://github.com/swaywm/wlroots
|
||
|
tasks:
|
||
|
- wlroots: |
|
||
|
cd wlroots
|
||
|
meson --prefix=/usr build -Drootston=false -Dexamples=false
|
||
|
ninja -C build
|
||
|
sudo ninja -C build install
|
||
|
- setup: |
|
||
|
cd sway
|
||
|
meson build
|
||
|
- build: |
|
||
|
cd sway
|
||
|
ninja -C build
|
||
|
- build-no-xwayland: |
|
||
|
cd sway
|
||
|
meson configure build -Dxwayland=disabled
|
||
|
ninja -C build
|