diff options
author | piernov <piernov@piernov.org> | 2012-03-04 07:01:02 +0100 |
---|---|---|
committer | piernov <piernov@piernov.org> | 2012-03-04 07:01:02 +0100 |
commit | b38cc7d473f9245c6a2d12ab3e137a50eb03826e (patch) | |
tree | c6447b42f03fde4f2b288265e90d6b3e0cd3b3e2 /dhcpcd/Pkgfile | |
parent | 59d1e071437aa685faaa135b52a983ca2162afce (diff) | |
download | nutyx-pakxe-b38cc7d473f9245c6a2d12ab3e137a50eb03826e.tar.gz nutyx-pakxe-b38cc7d473f9245c6a2d12ab3e137a50eb03826e.tar.bz2 nutyx-pakxe-b38cc7d473f9245c6a2d12ab3e137a50eb03826e.tar.xz nutyx-pakxe-b38cc7d473f9245c6a2d12ab3e137a50eb03826e.zip |
dhcpcd 5.5.4-1 màj port
Diffstat (limited to 'dhcpcd/Pkgfile')
-rwxr-xr-x | dhcpcd/Pkgfile | 33 |
1 files changed, 15 insertions, 18 deletions
diff --git a/dhcpcd/Pkgfile b/dhcpcd/Pkgfile index dfa113443..d3c9f31c7 100755 --- a/dhcpcd/Pkgfile +++ b/dhcpcd/Pkgfile @@ -4,30 +4,27 @@ # 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 \ - ) +version=5.5.4 +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 - wget http://nutyx.meticul.eu/files/patchs/aaabasicfs/blfs-bootscripts-$scriptsversion.tar.bz2 - tar xvf $scripts-$scriptsversion.tar.bz2 + 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 \ - --dbdir=/var/lib/dhcpcd \ - --sysconfdir=/etc \ - --os=linux \ - --with-hooks=none + ./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/ + 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 ../.. - } |