swayfx/.build.yml

34 lines
544 B
YAML
Raw Normal View History

2017-04-18 13:09:14 -04: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 10:49:26 -04:00
- meson
2017-04-26 22:37:15 -04:00
sources:
2017-04-18 13:09:14 -04:00
- https://git.sr.ht/~sircmpwn/sway
2017-10-22 10:45:11 -04:00
- https://git.sr.ht/~sircmpwn/wlroots
2017-04-18 13:09:14 -04:00
tasks:
2017-10-22 10:45:11 -04:00
- wlroots: |
cd wlroots
mkdir build
cd build
meson --prefix=/usr ..
ninja
sudo ninja install
2017-04-18 13:09:14 -04:00
- setup: |
cd sway
mkdir build
cd build
cmake ..
- build: |
cd sway
cd build
make