sway/.builds/alpine.yml

39 lines
763 B
YAML
Raw Normal View History

2019-02-19 11:11:16 +00:00
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
2019-02-19 11:11:16 +00:00
- wayland-dev
- wayland-protocols
- xcb-util-image-dev
- xwayland
2019-02-19 11:11:16 +00:00
sources:
- https://github.com/swaywm/sway
- https://github.com/swaywm/wlroots
tasks:
- wlroots: |
cd wlroots
2019-08-09 00:59:29 +00:00
meson --prefix=/usr build -Dexamples=false
2019-02-19 11:11:16 +00:00
ninja -C build
sudo ninja -C build install
- setup: |
cd sway
meson build -Dauto_features=enabled -Dtray=disabled
2019-02-19 11:11:16 +00:00
- build: |
cd sway
ninja -C build
- build-no-xwayland: |
cd sway
meson configure build -Dxwayland=disabled
ninja -C build