repo/extra/dhcpcd/build

18 lines
373 B
Plaintext
Raw Normal View History

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 \
2022-08-30 05:46:48 -06:00
--libexecdir=/usr/lib/dhcpcd \
--without-udev
2019-07-04 10:02:03 -06:00
make
2023-03-02 07:40:00 -07:00
make DESTDIR="$1" BINMODE=755 install
2019-07-04 10:02:03 -06:00
# Install runit service.
2021-07-01 10:27:32 -06:00
mkdir -p "$1/etc/sv/dhcpcd"
cp -f dhcpcd.run "$1/etc/sv/dhcpcd/run"
ln -sf /run/runit/supervise.dhcpcd "$1/etc/sv/dhcpcd/supervise"