Files
river/.builds/archlinux.yml
T

57 lines
1.3 KiB
YAML
Raw Normal View History

2022-02-05 22:34:07 +01:00
image: archlinux
packages:
2023-12-05 11:03:18 +01:00
- libdisplay-info
2022-07-10 19:00:17 +02:00
- libevdev
2022-02-05 22:34:07 +01:00
- libinput
- libxkbcommon
- mesa
- meson
- pixman
- wayland
- wayland-protocols
- hwdata
2022-02-05 22:34:07 +01:00
- xcb-util-errors
- xcb-util-image
- xcb-util-renderutil
- xcb-util-wm
- xorg-xwayland
- seatd
- tar
- wget
- xz
sources:
2024-04-01 22:24:14 +02:00
- https://codeberg.org/river/river
2022-02-05 22:34:07 +01:00
- https://gitlab.freedesktop.org/wayland/wayland.git
- https://gitlab.freedesktop.org/wlroots/wlroots.git
tasks:
- install_deps: |
cd wayland
2023-12-01 14:57:18 +01:00
git checkout 1.22.0
2023-01-06 11:00:45 +01:00
meson setup build -Ddocumentation=false -Dtests=false --prefix /usr
2022-02-05 22:34:07 +01:00
sudo ninja -C build install
cd ..
cd wlroots
2024-04-01 22:24:14 +02:00
git checkout 0.17.2
2023-01-06 11:00:45 +01:00
meson setup build --auto-features=enabled -Drenderers=gles2 -Dexamples=false \
2022-02-05 22:34:07 +01:00
-Dwerror=false -Db_ndebug=false --prefix /usr
sudo ninja -C build/ install
cd ..
2024-06-07 14:01:11 +02:00
wget -nv https://ziglang.org/download/0.13.0/zig-linux-x86_64-0.13.0.tar.xz
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
2022-02-05 22:34:07 +01:00
- build: |
cd river
zig build
- build_xwayland: |
cd river
zig build -Dxwayland
- fmt: |
cd river
zig fmt --check river/
zig fmt --check riverctl/
zig fmt --check rivertile/
zig fmt --check build.zig