CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
iputils: updated to s20121221 and aligned with upstream
[crossrootfs.git] / iputils / Pkgfile
... / ...
CommitLineData
1# Description: Basic networking applet
2# URL: http://www.linux-foundation.org/en/Net:Iputils
3# Maintainer: CRUX System Team, core-ports at crux dot nu
4# Packager: Juergen Daubert, juergen dot daubert at t-online dot de
5# Arch Maintainer: CRUX-ARM System Team, devel at crux-arm dot nu
6# Depends on: sysfsutils libcap
7
8name=iputils
9version=s20121221
10release=1
11source=(http://www.skbuff.net/iputils/$name-$version.tar.bz2
12 http://crux.nu/files/distfiles/$name-man-$version.tar.xz)
13
14build() {
15 cd $name-$version
16 sed -e "s|arping.o -lsysfs|arping.o $CLFS/usr/lib/libsysfs.so|" \
17 -e 's/IPV6_TARGETS=*/IPV6_TARGETS=/' -i Makefile
18
19 make CC="$CC" CFLAGS="$CFLAGS $CCOPT -I$CLFS/usr/include" USE_GNUTLS=no
20
21 install -d $PKG/{{s,}bin,usr/{man/man8,sbin}}
22 install ping $PKG/bin
23 install arping $PKG/sbin
24 install tracepath clockdiff rarpd rdisc ipg $PKG/usr/sbin
25 cp -d $SRC/$name-man-$version/* $PKG/usr/man/man8
26
27 rm $PKG/usr/man/man8/*6.*
28 chmod u+s $PKG/bin/ping
29}