blob: 931382fe05b2e50c4b0f8a694f7d1de788decc04 (
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 \
${CBUILD:+--build=${CBUILD}} \
${CHOST:+--host=${CHOST}} \
--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
}
|