2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-07-04 15:02:27 +00:00
repo/wayland/sway-no-seat/build

33 lines
790 B
Plaintext
Raw Normal View History

2021-07-08 09:06:02 +00:00
#!/bin/sh -e
2022-04-28 17:23:54 +00:00
for p in *.patch; do
patch -p1 < "$p"
done
2021-07-08 21:41:52 +00:00
# Build fails in subprojects/seatd with clang
# due to -Werror -> -Wsign-compare.
export CFLAGS="-Wno-error $CFLAGS"
# 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
2021-07-08 09:06:02 +00:00
meson \
--prefix=/usr \
2021-11-05 05:24:28 +00:00
-Ddefault-wallpaper=false \
-Dzsh-completions=false \
-Dbash-completions=false \
-Dfish-completions=false \
2021-07-08 09:06:02 +00:00
-Dxwayland=disabled \
-Dwlroots:examples=false \
-Dwlroots:xcb-errors=disabled \
-Dwlroots:default_library=static \
-Dseatd:libseat-builtin=enabled \
2021-07-08 09:06:02 +00:00
-Dseatd:default_library=static \
--force-fallback-for=wlroots,seatd \
. build
ninja -C build
meson install -C build --skip-subprojects