2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-09-13 00:00:13 +00:00
repo/core/busybox/build

14 lines
328 B
Plaintext
Raw Normal View History

2019-05-14 20:05:50 +00:00
#!/bin/sh -e
2019-05-14 11:02:11 +00:00
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 udhcpc.run "$1/etc/sv/udhcpc/run"
ln -s /run/runit/supervise.acpid "$1/etc/sv/acpid/supervise"
ln -s /run/runit/supervise.acpid "$1/etc/sv/udhcpc/supervise"