mirror of
https://codeberg.org/kiss-community/repo
synced 2024-11-17 12:10:12 -07:00
13 lines
249 B
Plaintext
13 lines
249 B
Plaintext
|
#!/bin/sh -e
|
||
|
|
||
|
./configure \
|
||
|
--prefix=/usr \
|
||
|
--sbindir=/usr/bin
|
||
|
|
||
|
make
|
||
|
make DESTDIR="$1" install
|
||
|
|
||
|
# Install runit service.
|
||
|
install -Dm755 acpid.run "$1/etc/sv/acpid/run"
|
||
|
ln -s /run/runit/supervise.acpid "$1/etc/sv/acpid/supervise"
|