https://github.com/swaywm/sway
Raw File
Tip revision: 40a0c205dc2acb0febcf34293b95edae4c34d608 authored by Drew DeVault on 27 April 2017, 02:37:15 UTC
Update .build.yml
Tip revision: 40a0c20
.build.yml
# 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
  - asciidoc
sources:
  - https://git.sr.ht/~sircmpwn/sway
tasks:
  - setup: |
      cd sway
      mkdir build
      cd build
      cmake ..
  - build: |
      cd sway
      cd build
      make
back to top