diff options
Diffstat (limited to 'iproute2/Pkgfile')
-rwxr-xr-x | iproute2/Pkgfile | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/iproute2/Pkgfile b/iproute2/Pkgfile new file mode 100755 index 000000000..8b88f86ac --- /dev/null +++ b/iproute2/Pkgfile @@ -0,0 +1,20 @@ +# Description: Programmes de base et avancés pour réseau IPV4 +# URL: http://linux-net.osdl.org/index.php/Iproute2 +# Maintainer: NuTyX core team +# Packager: thierryn1 at hispeed dot ch + +name=iproute2 +version=2.6.38 +release=1 +source=( http://devresources.linuxfoundation.org/dev/$name/download/$name-$version.tar.bz2\ + ) + + +build() { +cd $name-* +sed -i '/^TARGETS/s@arpd@@g' misc/Makefile +make SBINDIR=/sbin MANDIR=/usr/share/man INFODIR=/usr/share/info \ + DESTDIR=$PKG install +mkdir -p $PKG/usr/sbin +rm -r $PKG/{share,lib,usr/lib} +} |