diff options
author | Drew DeVault <sir@cmpwn.com> | 2018-04-12 20:19:54 -0400 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2018-04-12 20:19:54 -0400 |
commit | cd1b32453a9296c18b28bff71607aeb22987b5cd (patch) | |
tree | c653c6d525b471914c01a9d7ae543f521b6138ed /.build.yml | |
parent | 8e06985cc1b479724446fba752e0fecfb998e87b (diff) | |
parent | 5785170421dc38437acde8bb61068cd16fda716c (diff) |
Merge branch 'wlroots'
Diffstat (limited to '.build.yml')
-rw-r--r-- | .build.yml | 21 |
1 files changed, 13 insertions, 8 deletions
@@ -1,24 +1,29 @@ # vim: ft=yaml ts=2 sw=2 et : image: archlinux packages: - - cmake - - wlc-git + - meson - xorg-server-xwayland - xcb-util-image - json-c - pango - cairo - wayland + - wayland-protocols - gdk-pixbuf2 + - libinput + - libxkbcommon sources: - - https://git.sr.ht/~sircmpwn/sway + - https://github.com/swaywm/sway + - https://github.com/swaywm/wlroots tasks: + - wlroots: | + cd wlroots + meson --prefix=/usr build + ninja -C build + sudo ninja -C build install - setup: | cd sway - mkdir build - cd build - cmake .. + meson build - build: | cd sway - cd build - make + ninja -C build |