summaryrefslogtreecommitdiffstats
path: root/.build.yml
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <sir@cmpwn.com>2018-04-12 20:19:54 -0400
committerLibravatar Drew DeVault <sir@cmpwn.com>2018-04-12 20:19:54 -0400
commitcd1b32453a9296c18b28bff71607aeb22987b5cd (patch)
treec653c6d525b471914c01a9d7ae543f521b6138ed /.build.yml
parentMerge pull request #1634 from aleksander/master (diff)
parentFix separator height calculation (diff)
downloadsway-cd1b32453a9296c18b28bff71607aeb22987b5cd.tar.gz
sway-cd1b32453a9296c18b28bff71607aeb22987b5cd.tar.zst
sway-cd1b32453a9296c18b28bff71607aeb22987b5cd.zip
Merge branch 'wlroots'
Diffstat (limited to '.build.yml')
-rw-r--r--.build.yml21
1 files changed, 13 insertions, 8 deletions
diff --git a/.build.yml b/.build.yml
index 9c9e8adb..3cfb7483 100644
--- a/.build.yml
+++ b/.build.yml
@@ -1,24 +1,29 @@
1# vim: ft=yaml ts=2 sw=2 et : 1# vim: ft=yaml ts=2 sw=2 et :
2image: archlinux 2image: archlinux
3packages: 3packages:
4 - cmake 4 - meson
5 - wlc-git
6 - xorg-server-xwayland 5 - xorg-server-xwayland
7 - xcb-util-image 6 - xcb-util-image
8 - json-c 7 - json-c
9 - pango 8 - pango
10 - cairo 9 - cairo
11 - wayland 10 - wayland
11 - wayland-protocols
12 - gdk-pixbuf2 12 - gdk-pixbuf2
13 - libinput
14 - libxkbcommon
13sources: 15sources:
14 - https://git.sr.ht/~sircmpwn/sway 16 - https://github.com/swaywm/sway
17 - https://github.com/swaywm/wlroots
15tasks: 18tasks:
19 - wlroots: |
20 cd wlroots
21 meson --prefix=/usr build
22 ninja -C build
23 sudo ninja -C build install
16 - setup: | 24 - setup: |
17 cd sway 25 cd sway
18 mkdir build 26 meson build
19 cd build
20 cmake ..
21 - build: | 27 - build: |
22 cd sway 28 cd sway
23 cd build 29 ninja -C build
24 make