https://github.com/swaywm/sway.git
Raw File
Tip revision: 52c4c166d83caa1f8a0d1fbc49deff65d9de0bcf authored by Drew DeVault on 01 November 2017, 12:42:41 UTC
Merge pull request #1446 from kon14/patch-1
Tip revision: 52c4c16
.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