mirror of
https://codeberg.org/kiss-community/repo
synced 2024-11-15 11:10:08 -07:00
38 lines
869 B
Bash
Executable File
38 lines
869 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
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
|
|
|
|
# Build fails in with clang due to -Werror.
|
|
export CFLAGS="$CFLAGS -Wno-unused-function -Wno-error"
|
|
|
|
meson \
|
|
--prefix=/usr \
|
|
-Dswaybar=false \
|
|
-Dswaynag=false \
|
|
-Ddefault-wallpaper=false \
|
|
-Dzsh-completions=false \
|
|
-Dbash-completions=false \
|
|
-Dfish-completions=false \
|
|
-Dxwayland=disabled \
|
|
-Dwlroots:examples=false \
|
|
-Dwlroots:xcb-errors=disabled \
|
|
-Dwlroots:default_library=static \
|
|
-Dseatd:builtin=enabled \
|
|
-Dseatd:default_library=static \
|
|
--force-fallback-for=wlroots,seatd \
|
|
. build
|
|
|
|
ninja -C build
|
|
|
|
mkdir -p \
|
|
"$1/usr/bin" \
|
|
"$1/etc/sway"
|
|
|
|
cp -f build/sway/sway "$1/usr/bin"
|
|
cp -f config.in "$1/etc/sway/config"
|