2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-07-04 15:02:27 +00:00
repo/wayland/sway/build
2022-10-17 14:16:16 +05:30

24 lines
486 B
Bash
Executable File

#!/bin/sh -e
# Build fails with gcc 12 due to -Werror.
export CFLAGS="$CFLAGS -Wno-error"
patch -p1 < pcre2.patch
# Default background color.
sed 's/0.25f, 0.25f, 0.25f/0.929, 0.870, 0.678/' \
sway/desktop/render.c > _
mv -f _ sway/desktop/render.c
meson \
--prefix=/usr \
-Ddefault-wallpaper=false \
-Dzsh-completions=false \
-Dbash-completions=false \
-Dfish-completions=false \
-Dxwayland=disabled \
. build
ninja -C build
ninja -C build install