# Description: a DHCP and DHCPv6 client # URL: https://roy.marples.name/projects/dhcpcd # Maintainer: KRAK3N Team, extra ports at krak3n dot my # Depends on: name=dhcpcd version=10.2.4 release=1 source=(https://github.com/NetworkConfiguration/${name}/releases/download/v${version}/${name}-${version}.tar.xz run) build() { cd ${name}-${version} ./configure \ --prefix=/usr \ --sysconfdir=/etc \ --localstatedir=/var \ --libdir=/usr/lib \ --libexecdir=/usr/lib/$name \ --infodir=/usr/share/info \ --mandir=/usr/share/man \ --without-udev make make DESTDIR=$PKG install install -Dm755 $SRC/run $PKG/etc/sv/$name/run ln -s ../../../run/runit/supervise.$name $PKG/etc/sv/$name/supervise }