core/dhcpcd/Pkgfile

25 lines
620 B
Plaintext
Raw Normal View History

2006-12-15 09:19:23 +01:00
# 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
2006-02-23 16:26:10 +01:00
name=dhcpcd
version=6.10.2
2006-12-15 09:19:23 +01:00
release=1
2015-07-09 15:37:14 +02:00
source=(http://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 \
2009-10-18 13:36:19 +02:00
--os=linux \
--with-hooks=none
2008-09-17 10:46:40 +02:00
2009-09-11 12:42:25 +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
}