aboutsummaryrefslogtreecommitdiff
path: root/.builds/alpine.yml
blob: 07a10db076d0df7ac3e3d1f25c57c41b912d6aee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
image: alpine/edge
packages:
  - cairo-dev
  - eudev-dev
  - gdk-pixbuf-dev
  - json-c-dev
  - libevdev-dev
  - libinput-dev
  - libxcb-dev
  - libxkbcommon-dev
  - mesa-dev
  - meson
  - pango-dev
  - pixman-dev
  - wayland-dev
  - wayland-protocols
  - xcb-util-image-dev
  - xorg-server-xwayland
sources:
  - https://github.com/swaywm/sway
  - https://github.com/swaywm/wlroots
  - https://git.sr.ht/~sircmpwn/scdoc
tasks:
  - scdoc: |
      cd scdoc
      make PREFIX=/usr
      sudo make install PREFIX=/usr
  - wlroots: |
      cd wlroots
      meson --prefix=/usr build -Drootston=false -Dexamples=false
      ninja -C build
      sudo ninja -C build install
  - setup: |
      cd sway
      meson build
  - build: |
      cd sway
      ninja -C build
  - build-no-xwayland: |
      cd sway
      meson configure build -Dxwayland=disabled
      ninja -C build