2021-07-08 03:23:26 -06:00
|
|
|
#!/bin/sh -e
|
|
|
|
|
2021-07-09 03:35:18 -06:00
|
|
|
patch -p1 < no-evdev.patch
|
|
|
|
|
2021-07-08 03:23:26 -06:00
|
|
|
# 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
|
|
|
|
|
2021-07-09 03:56:09 -06:00
|
|
|
# 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 03:23:26 -06:00
|
|
|
export DESTDIR="$1"
|
|
|
|
export CFLAGS="$CFLAGS -Wno-unused-function -Wno-error"
|
|
|
|
|
|
|
|
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 \
|
2021-07-08 15:43:31 -06:00
|
|
|
-Dseatd:builtin=enabled \
|
2021-07-08 03:23:26 -06:00
|
|
|
-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"
|