summaryrefslogtreecommitdiffstats
path: root/dhcpcd/Pkgfile
blob: dfa113443340f0bbecc3c9473baa1093bb9b5970 (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
31
32
33
# 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.2.9
release=2
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
	wget  http://nutyx.meticul.eu/files/patchs/aaabasicfs/blfs-bootscripts-$scriptsversion.tar.bz2
        tar xvf $scripts-$scriptsversion.tar.bz2
	cd $name-$version
	    ./configure --prefix= \
                --libexecdir=/usr/lib/dhcpcd \
                --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
	cd ../..

}