2006-12-15 09:19:23 +01:00
|
|
|
# Description: An RFC2131-compliant DHCP client daemon
|
2008-01-15 19:04:27 +01:00
|
|
|
# URL: http://roy.marples.name/dhcpcd
|
2007-01-23 17:25:18 +00:00
|
|
|
# Maintainer: CRUX System Team, core-ports at crux dot nu
|
2006-02-23 15:26:10 +00:00
|
|
|
|
|
|
|
name=dhcpcd
|
2012-04-02 14:47:59 +02:00
|
|
|
version=5.5.6
|
2006-12-15 09:19:23 +01:00
|
|
|
release=1
|
2008-10-25 03:33:36 +00: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
|
|
|
}
|