24 lines
586 B
Plaintext
24 lines
586 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
|
|
# Depends on: eudev
|
|
|
|
name=dhcpcd
|
|
version=8.1.6
|
|
release=1
|
|
source=(https://roy.marples.name/downloads/dhcpcd/$name-$version.tar.xz)
|
|
|
|
build () {
|
|
cd $name-$version
|
|
|
|
./configure --prefix= \
|
|
--libexecdir=/lib/dhcpcd \
|
|
--dbdir=/var/lib/dhcpcd \
|
|
--sysconfdir=/etc/dhcpcd \
|
|
--with-hooks=
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
chmod -R u+w $PKG
|
|
}
|