mirror of
https://codeberg.org/kiss-community/repo
synced 2024-11-15 03:00:10 -07:00
31a861131b
NOTE: They're only kept if scdoc is installed. This is the first step towards a more complete solution.
46 lines
1.1 KiB
Bash
Executable File
46 lines
1.1 KiB
Bash
Executable File
#!/bin/sh -e
|
|
|
|
patch -p1 < sway-static.patch
|
|
patch -p1 < no-evdev.patch
|
|
|
|
# Build fails in subprojects/seatd with clang
|
|
# due to -Werror -> -Wsign-compare.
|
|
export CFLAGS="-Wno-error $CFLAGS"
|
|
|
|
# Remove conflict between static libseat and wlroots.
|
|
sed 's/\(const long NSEC\)/static \1/' \
|
|
subprojects/seatd/common/log.c > _
|
|
mv -f _ subprojects/seatd/common/log.c
|
|
|
|
# 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 \
|
|
-Dexamples=false \
|
|
-Dxwayland=disabled \
|
|
-Dx11-backend=disabled \
|
|
-Dxcb-errors=disabled \
|
|
-Dxcb-icccm=disabled \
|
|
-Dwlroots:examples=false \
|
|
-Dwlroots:xcb-errors=disabled \
|
|
-Dwlroots:x11-backend=disabled \
|
|
-Dwlroots:default_library=static \
|
|
-Dseatd:builtin=enabled \
|
|
-Dseatd:default_library=static \
|
|
--force-fallback-for=wlroots,seatd \
|
|
. build
|
|
|
|
ninja -C build
|
|
meson install -C build --skip-subprojects
|
|
|
|
rm -rf \
|
|
"$1/usr/share/fish" \
|
|
"$1/usr/share/bash-completion" \
|
|
"$1/usr/share/backgrounds" \
|
|
"$1/usr/share/zsh"
|