core/dhcpcd/Pkgfile

24 lines
587 B
Plaintext
Raw Normal View History

2006-12-15 09:19:23 +01:00
# Description: An RFC2131-compliant DHCP client daemon
2020-06-04 16:56:32 +02:00
# URL: https://roy.marples.name/projects/dhcpcd/
# Maintainer: CRUX System Team, core-ports at crux dot nu
# Depends on: eudev
2006-02-23 16:26:10 +01:00
name=dhcpcd
2020-04-21 14:39:12 +02:00
version=8.1.9
2016-06-20 12:21:25 +02:00
release=1
2019-10-16 18:53:37 +02:00
source=(https://roy.marples.name/downloads/dhcpcd/$name-$version.tar.xz)
2006-02-23 16:26:10 +01:00
build () {
cd $name-$version
2008-09-17 10:46:40 +02:00
2009-09-11 12:42:25 +02:00
./configure --prefix= \
--libexecdir=/lib/dhcpcd \
--dbdir=/var/lib/dhcpcd \
2009-09-23 10:30:57 +02:00
--sysconfdir=/etc/dhcpcd \
2016-04-21 12:41:31 +02:00
--with-hooks=
2008-09-17 10:46:40 +02:00
make
2008-09-17 10:46:40 +02:00
make DESTDIR=$PKG install
2009-09-11 12:42:25 +02:00
chmod -R u+w $PKG
2006-02-23 16:26:10 +01:00
}