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

38 lines
877 B
Plaintext
Raw Normal View History

2021-07-08 09:23:26 +00:00
#!/bin/sh -e
2021-07-09 09:35:18 +00:00
patch -p1 < no-evdev.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
2022-05-07 03:23:26 +00:00
# Build fails with clang due to -Werror.
2021-07-08 09:23:26 +00:00
export CFLAGS="$CFLAGS -Wno-unused-function -Wno-error"
meson \
-Dprefix=/usr \
2021-07-28 07:21:47 +00:00
-Dswaybar=false \
-Dswaynag=false \
2021-11-05 05:25:20 +00:00
-Ddefault-wallpaper=false \
-Dzsh-completions=false \
-Dbash-completions=false \
-Dfish-completions=false \
2021-07-08 09:23:26 +00:00
-Dxwayland=disabled \
-Dwlroots:examples=false \
-Dwlroots:xcb-errors=disabled \
-Dwlroots:default_library=static \
-Dseatd:libseat-builtin=enabled \
2021-07-08 09:23:26 +00:00
-Dseatd:default_library=static \
--force-fallback-for=wlroots,seatd \
. output
2021-07-08 09:23:26 +00:00
ninja -C output
2021-07-08 09:23:26 +00:00
mkdir -p \
"$1/usr/bin" \
"$1/etc/sway"
cp -f output/sway/sway "$1/usr/bin"
2021-07-08 09:23:26 +00:00
cp -f config.in "$1/etc/sway/config"