2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-07-07 08:22:28 +00:00
repo/extra/acpid/build

13 lines
245 B
Plaintext
Raw Normal View History

2020-01-12 17:15:31 +00:00
#!/bin/sh -e
./configure \
--prefix=/usr \
--sbindir=/usr/bin
make
make DESTDIR="$1" install
# Install runit service.
2020-02-14 16:18:56 +00:00
install -Dm755 acpid.run "$1/etc/sv/acpid/run"
ln -s /run/runit/supervise.acpid "$1/etc/sv/acpid/supervise"