core/dhcpcd/Pkgfile

25 lines
635 B
Plaintext

# Description: An RFC2131-compliant DHCP client daemon
# URL: http://roy.marples.name/projects/dhcpcd/
# Maintainer: CRUX System Team, core-ports at crux dot nu
name=dhcpcd
version=6.0.5
release=1
source=(http://roy.marples.name/downloads/dhcpcd/$name-$version.tar.bz2)
build () {
cd $name-$version
./configure --prefix= \
--libexecdir=/lib/dhcpcd \
--dbdir=/var/lib/dhcpcd \
--mandir=/usr/man \
--sysconfdir=/etc/dhcpcd \
--os=linux \
--with-hooks=none
make
make DESTDIR=$PKG install
chmod -R u+w $PKG
}