2022-02-05 13:34:07 -08:00
|
|
|
image: archlinux
|
|
|
|
packages:
|
2023-12-05 02:03:18 -08:00
|
|
|
- libdisplay-info
|
2022-07-10 10:00:17 -07:00
|
|
|
- libevdev
|
2022-02-05 13:34:07 -08:00
|
|
|
- libinput
|
|
|
|
- libxkbcommon
|
|
|
|
- mesa
|
|
|
|
- meson
|
|
|
|
- pixman
|
|
|
|
- wayland
|
|
|
|
- wayland-protocols
|
2022-11-13 07:36:21 -08:00
|
|
|
- hwdata
|
2022-02-05 13:34:07 -08:00
|
|
|
- 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
|
2022-02-05 13:34:07 -08:00
|
|
|
- https://gitlab.freedesktop.org/wayland/wayland.git
|
|
|
|
- https://gitlab.freedesktop.org/wlroots/wlroots.git
|
|
|
|
tasks:
|
|
|
|
- install_deps: |
|
|
|
|
cd wayland
|
2023-12-01 05:57:18 -08:00
|
|
|
git checkout 1.22.0
|
2023-01-06 02:00:45 -08:00
|
|
|
meson setup build -Ddocumentation=false -Dtests=false --prefix /usr
|
2022-02-05 13:34:07 -08:00
|
|
|
sudo ninja -C build install
|
|
|
|
cd ..
|
|
|
|
|
|
|
|
cd wlroots
|
2024-04-01 13:24:14 -07:00
|
|
|
git checkout 0.17.2
|
2023-01-06 02:00:45 -08:00
|
|
|
meson setup build --auto-features=enabled -Drenderers=gles2 -Dexamples=false \
|
2022-02-05 13:34:07 -08:00
|
|
|
-Dwerror=false -Db_ndebug=false --prefix /usr
|
|
|
|
sudo ninja -C build/ install
|
|
|
|
cd ..
|
|
|
|
|
2024-03-07 07:19:22 -08:00
|
|
|
wget -nv https://ziglang.org/download/0.12.0/zig-linux-x86_64-0.12.0.tar.xz
|
2022-02-05 13:34:07 -08:00
|
|
|
# Remove a lot of useless lines from tar output.
|
2024-03-07 07:19:22 -08:00
|
|
|
tar -xvf zig-linux-x86_64-0.12.0.tar.xz 1>/dev/null
|
|
|
|
sudo mv zig-linux-x86_64-0.12.0/zig /usr/bin/
|
|
|
|
sudo mv zig-linux-x86_64-0.12.0/lib /usr/lib/zig
|
2022-02-05 13:34:07 -08: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
|
2024-05-20 04:13:05 -07:00
|
|
|
zig fmt --check build.zig.zon
|