wok view arping/receipt @ rev 17595

Up: glib 2.43.3
author Alexander Medvedev <devl547@gmail.com>
date Tue Feb 10 20:09:44 2015 +0000 (2015-02-10)
parents 0bcec1fdfe98
children 04d824c95283
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 LICENSE="GPL2"
9 WEB_SITE="http://www.habets.pp.se/synscan/programs.php?prog=arping"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WGET_URL="http://www.habets.pp.se/synscan/files/$TARBALL"
13 DEPENDS="libnet libpcap"
14 BUILD_DEPENDS="libpcap-dev libnet-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 ./configure $CONFIGURE_ARGS &&
20 make && make DESTDIR=$DESTDIR install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr
27 cp -a $install/usr/sbin $fs/usr
28 }