forked from kiss-community/repo
18 lines
373 B
Bash
Executable File
18 lines
373 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--sbindir=/usr/bin \
|
|
--sysconfdir=/etc \
|
|
--rundir=/run \
|
|
--libexecdir=/usr/lib/dhcpcd \
|
|
--without-udev
|
|
|
|
make
|
|
make DESTDIR="$1" BINMODE=755 install
|
|
|
|
# Install runit service.
|
|
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"
|