repo/extra/dhcpcd/build

16 lines
311 B
Plaintext
Raw Normal View History

2019-07-04 16:02:03 +00:00
#!/bin/sh -e
./configure \
--prefix=/usr \
--sbindir=/usr/bin \
--sysconfdir=/etc \
--rundir=/run \
--privsepuser=root
2019-07-04 16:02:03 +00:00
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"