mirror of
https://codeberg.org/kiss-community/repo
synced 2024-12-23 07:40:11 -07:00
19 lines
498 B
Bash
Executable File
19 lines
498 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
make
|
|
make install
|
|
|
|
# Work around no 'DESTDIR'.
|
|
cp -a _install/. "$1"
|
|
|
|
# Install runit services.
|
|
install -Dm755 acpid.run "$1/etc/sv/acpid/run"
|
|
install -Dm755 crond.run "$1/etc/sv/crond/run"
|
|
install -Dm755 syslogd.run "$1/etc/sv/syslogd/run"
|
|
ln -s /run/runit/supervise.acpid "$1/etc/sv/acpid/supervise"
|
|
ln -s /run/runit/supervise.crond "$1/etc/sv/crond/supervise"
|
|
ln -s /run/runit/supervise.syslogd "$1/etc/sv/syslogd/supervise"
|
|
|
|
# Install mdev config.
|
|
cp mdev.conf "$1/etc/mdev.conf"
|