2006-12-15 09:19:23 +01:00
|
|
|
# Description: An RFC2131-compliant DHCP client daemon
|
2013-06-25 13:07:43 +02:00
|
|
|
# URL: http://roy.marples.name/projects/dhcpcd/
|
2007-01-23 17:25:18 +00:00
|
|
|
# Maintainer: CRUX System Team, core-ports at crux dot nu
|
2014-02-24 21:34:17 -06:00
|
|
|
# Depends on: eudev
|
2006-02-23 15:26:10 +00:00
|
|
|
|
|
|
|
name=dhcpcd
|
2014-09-27 11:48:05 +02:00
|
|
|
version=6.4.7
|
2006-12-15 09:19:23 +01:00
|
|
|
release=1
|
2014-01-11 10:54:55 +01:00
|
|
|
source=(http://roy.marples.name/downloads/dhcpcd/$name-$version.tar.bz2)
|
2006-02-23 15:26:10 +00: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 \
|
|
|
|
--mandir=/usr/man \
|
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 15:26:10 +00:00
|
|
|
}
|