river/.builds/archlinux.yml

61 lines
1.6 KiB
YAML
Raw Permalink Normal View History

image: archlinux
packages:
2023-12-05 02:03:18 -08:00
- libdisplay-info
- libevdev
- libinput
- libxkbcommon
- mesa
- meson
- pixman
- wayland
- wayland-protocols
- hwdata
- xcb-util-errors
- xcb-util-image
- xcb-util-renderutil
- xcb-util-wm
- xorg-xwayland
- seatd
- tar
- wget
- xz
sources:
2024-04-01 13:24:14 -07:00
- https://codeberg.org/river/river
- https://gitlab.freedesktop.org/wayland/wayland.git
- https://gitlab.freedesktop.org/wlroots/wlroots.git
tasks:
- install_deps: |
cd wayland
2024-07-16 05:24:22 -07:00
git checkout 1.23.0
meson setup build -Ddocumentation=false -Dtests=false --prefix /usr
sudo ninja -C build install
cd ..
cd wlroots
2024-07-16 05:24:22 -07:00
git checkout 0.18.0
meson setup build --auto-features=enabled -Drenderers=gles2 \
-Dcolor-management=disabled -Dlibliftoff=disabled \
-Dexamples=false -Dwerror=false -Db_ndebug=false \
-Dxcb-errors=disabled --prefix /usr
sudo ninja -C build/ install
cd ..
# Eat Github's resources rather than the Zig Software Foundation's resources!
wget -nv https://github.com/ifreund/zig-tarball-mirror/releases/download/0.13.0/zig-linux-x86_64-0.13.0.tar.xz
2024-06-07 05:01:11 -07:00
tar xf zig-linux-x86_64-0.13.0.tar.xz
sudo mv zig-linux-x86_64-0.13.0/zig /usr/bin/
sudo mv zig-linux-x86_64-0.13.0/lib /usr/lib/zig
- build: |
cd river
2024-06-13 02:37:13 -07:00
zig build --summary all
- build_xwayland: |
cd river
2024-06-13 02:37:13 -07:00
zig build --summary all -Dxwayland
- fmt: |
cd river
zig fmt --check river/
zig fmt --check riverctl/
zig fmt --check rivertile/
zig fmt --check build.zig
zig fmt --check build.zig.zon