summaryrefslogtreecommitdiffstats
path: root/dhcpcd/Pkgfile
blob: b86841836c461f62ab108b58613e7b426bdf23f6 (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
28
29
30
# Description: Client dhcp pour obtenir une adresse dynamiquement
# URL: http://roy.marples.name/projects/dhcpcd
# Maintainer: NuTyX core team
# Packager: thierryn1 at hispeed dot ch

name=dhcpcd
version=5.5.6
release=1
source=(http://roy.marples.name/downloads/$name/$name-$version.tar.bz2
	dhcpcd)

build() {
	source /etc/blfs-bootscripts
	wget http://www.linuxfromscratch.org/blfs/downloads/svn/${scripts}-${scriptsversion}.tar.bz2
	tar xvf $scripts-$scriptsversion.tar.bz2
	cd $name-$version
	./configure --prefix= \
		--libexecdir=/usr/lib/dhcpcd \
		--rundir=/run \
		--dbdir=/var/lib/dhcpcd \
		--sysconfdir=/etc \
		--os=linux \
		--with-hooks=none
	make
	make DESTDIR=$PKG install
	mkdir -p $PKG/etc/sysconfig/network-devices/ifconfig.eth0
	mv ../dhcpcd $PKG/etc/sysconfig/network-devices/ifconfig.eth0/
	cd ../$scripts-$scriptsversion
	make DESTDIR=$PKG install-service-dhcpcd
}