blob: 7c4f209cbf1b425d26cf6c678f3589c1650e0598 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
image: archlinux
packages:
- base-devel
- meson
- wayland
- wayland-protocols
- cairo
- pango
sources:
- https://git.sr.ht/~raphi/somebar
tasks:
- setup: |
cd somebar
meson build --fatal-meson-warnings
cp src/config.def.hpp src/config.hpp
- build: |
cd somebar/build
ninja
sudo ninja install
|