mirror of
https://codeberg.org/kiss-community/repo
synced 2024-11-15 11:10:08 -07:00
23 lines
460 B
Bash
Executable File
23 lines
460 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
# Build fails in with clang due to
|
|
# -Werror -> -Wsign-compare.
|
|
export CFLAGS="-Wno-error $CFLAGS"
|
|
export DESTDIR="$1"
|
|
|
|
meson \
|
|
--prefix=/usr \
|
|
-Ddefault_library=both \
|
|
. build
|
|
|
|
ninja -C build
|
|
ninja -C build install
|
|
|
|
# Set suid on seatd-launch.
|
|
chmod u+s "$1/usr/bin/seatd-launch"
|
|
|
|
# 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"
|