wok view arping/receipt @ rev 15020

airpwn: update bdeps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Aug 11 17:42:17 2013 +0000 (2013-08-11)
parents 2b66f7a527f5
children f4c22f009037
line source
1 # SliTaz package receipt.
3 PACKAGE="arping"
4 VERSION="2.13"
5 CATEGORY="network"
6 SHORT_DESC="ARP ping utility"
7 MAINTAINER="slaxemulator@gmail.com"
8 WEB_SITE="http://www.habets.pp.se/synscan/programs.php?prog=arping"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WGET_URL="http://www.habets.pp.se/synscan/files/$TARBALL"
12 DEPENDS="libnet libpcap"
13 BUILD_DEPENDS="libpcap-dev libnet-dev"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 ./configure $CONFIGURE_ARGS &&
19 make && make DESTDIR=$DESTDIR install
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 mkdir -p $fs/usr
26 cp -a $install/usr/sbin $fs/usr
27 }