16 lines
328 B
Plaintext
16 lines
328 B
Plaintext
|
#!/bin/sh -e
|
||
|
|
||
|
./configure \
|
||
|
--prefix=/usr \
|
||
|
--sbindir=/usr/bin \
|
||
|
--sysconfdir=/etc \
|
||
|
--rundir=/run \
|
||
|
--libexecdir=/usr/lib/dhcpcd
|
||
|
|
||
|
make
|
||
|
make DESTDIR="$1" install
|
||
|
|
||
|
# Install runit service.
|
||
|
install -Dm 755 dhcpcd.run "$1/etc/sv/dhcpcd/run"
|
||
|
ln -s /run/runit/supervise.dhcpcd "$1/etc/sv/dhcpcd/supervise"
|