https://github.com/swaywm/sway.git
Raw File
Tip revision: 0c1ef88a8d967673d0b6dc187ffb105441215782 authored by Drew DeVault on 23 October 2017, 01:15:43 UTC
Merge pull request #1425 from ggreer/grab-error
Tip revision: 0c1ef88
.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
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