2019-07-04 10:02:03 -06:00
|
|
|
#!/bin/sh -e
|
|
|
|
|
|
|
|
./configure \
|
|
|
|
--prefix=/usr \
|
|
|
|
--sbindir=/usr/bin \
|
|
|
|
--sysconfdir=/etc \
|
2020-05-08 02:34:29 -06:00
|
|
|
--rundir=/run \
|
|
|
|
--libexecdir=/usr/lib/dhcpcd
|
2019-07-04 10:02:03 -06:00
|
|
|
|
|
|
|
make
|
|
|
|
make DESTDIR="$1" install
|
|
|
|
|
|
|
|
# Install runit service.
|
2020-04-28 08:50:29 -06:00
|
|
|
install -Dm 755 dhcpcd.run "$1/etc/sv/dhcpcd/run"
|
2019-07-04 10:02:03 -06:00
|
|
|
ln -s /run/runit/supervise.dhcpcd "$1/etc/sv/dhcpcd/supervise"
|