mirror of
https://github.com/wizbright/waybox.git
synced 2025-10-28 05:40:18 -04:00
29 lines
557 B
YAML
29 lines
557 B
YAML
# A SourceHut build manifest. See https://man.sr.ht/builds.sr.ht/manifest.md
|
|
# for more information.
|
|
#
|
|
image: archlinux
|
|
packages:
|
|
- clang
|
|
- gcc
|
|
- libevdev
|
|
- libinput
|
|
- libxkbcommon
|
|
- libxml2
|
|
- meson
|
|
- wayland
|
|
- wayland-protocols
|
|
- wlroots-git
|
|
- xorg-server-xwayland
|
|
sources:
|
|
- https://github.com/wizbright/waybox
|
|
tasks:
|
|
- setup: |
|
|
cd waybox
|
|
CC=gcc meson setup build-gcc
|
|
- build: |
|
|
cd waybox
|
|
ninja -C build-gcc
|
|
- clang: |
|
|
cd waybox
|
|
CC=clang meson setup build-clang
|
|
ninja -C build-clang
|