repo/extra/dhcpcd/build

16 lines
328 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 \
2020-05-08 08:34:29 +00:00
--rundir=/run \
--libexecdir=/usr/lib/dhcpcd
2019-07-04 16:02:03 +00:00
make
make DESTDIR="$1" install
# Install runit service.
2020-04-28 14:50:29 +00:00
install -Dm 755 dhcpcd.run "$1/etc/sv/dhcpcd/run"
2019-07-04 16:02:03 +00:00
ln -s /run/runit/supervise.dhcpcd "$1/etc/sv/dhcpcd/supervise"