sway/.build.yml

34 lines
544 B
YAML
Raw Normal View History

2017-04-18 17:09:14 +00:00
# vim: ft=yaml ts=2 sw=2 et :
image: archlinux
packages:
- cmake
- wlc-git
- xorg-server-xwayland
- xcb-util-image
- json-c
- pango
- cairo
- wayland
- gdk-pixbuf2
2017-10-22 14:49:26 +00:00
- meson
2017-04-27 02:37:15 +00:00
sources:
2017-04-18 17:09:14 +00:00
- https://git.sr.ht/~sircmpwn/sway
2017-10-22 14:45:11 +00:00
- https://git.sr.ht/~sircmpwn/wlroots
2017-04-18 17:09:14 +00:00
tasks:
2017-10-22 14:45:11 +00:00
- wlroots: |
cd wlroots
mkdir build
cd build
meson --prefix=/usr ..
ninja
sudo ninja install
2017-04-18 17:09:14 +00:00
- setup: |
cd sway
mkdir build
cd build
cmake ..
- build: |
cd sway
cd build
make