mirror of
https://codeberg.org/kiss-community/repo
synced 2024-11-15 03:00:10 -07:00
24 lines
465 B
Bash
Executable File
24 lines
465 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
# Fix for GCC 13.
|
|
export CFLAGS="$CFLAGS -Wno-error=switch"
|
|
|
|
# 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
|
|
|
|
export DESTDIR="$1"
|
|
|
|
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
|