repo/wayland/libseat/build

23 lines
464 B
Plaintext
Raw Normal View History

2021-07-08 07:48:47 +00:00
#!/bin/sh -e
2021-07-12 11:18:22 +00:00
# Build fails in with clang due to
# -Werror -> -Wsign-compare.
export CFLAGS="-Wno-error $CFLAGS"
2023-03-02 14:40:00 +00:00
export DESTDIR="$1"
2021-07-12 11:18:22 +00:00
2023-11-18 20:51:12 +00:00
meson setup \
-Dprefix=/usr \
2021-07-08 07:48:47 +00:00
-Ddefault_library=both \
2023-11-18 20:51:12 +00:00
build
2021-07-08 07:48:47 +00:00
ninja -C build
ninja -C build install
2021-07-13 08:54:47 +00:00
2023-07-20 01:53:16 +00:00
# Set suid on seatd-launch.
chmod u+s "$1/usr/bin/seatd-launch"
2021-07-13 08:54:47 +00:00
# Install runit service.
mkdir -p "$1/etc/sv/seatd"
cp -f seatd.run "$1/etc/sv/seatd/run"
ln -sf /run/runit/supervise.seatd "$1/etc/sv/seatd/supervise"