blob: 6e102cee89cc9539aa2aa8fc6b65d0f9f45e9e38 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
description="An RFC2131-compliant DHCP client daemon."
packager="CRUX System Team <core-ports AT crux DOT nu>"
maintainer="Lukc <lukc AT upyum DOT com>"
url="http://roy.marples.name/dhcpcd"
depends=()
name=dhcpcd
version=5.2.9
release=1
source=(http://roy.marples.name/downloads/$name/$name-$version.tar.bz2)
build ()
{
cd $name-$version;
./configure \
${CHOST:+--build=${CHOST}} \
${CTARGET:+--host=${CTARGET}} \
--prefix= \
--libexecdir=/lib/dhcpcd \
--dbdir=/var/lib/dhcpcd \
--mandir=$mandir \
--sysconfdir=$sysconfdir/dhcpcd \
--os=linux \
--with-hooks=none;
make;
make DESTDIR=$PKG install;
chmod -R u+w $PKG
}
|