wok view arping/receipt @ rev 15201

Add some licenses
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Sep 07 18:25:02 2013 +0000 (2013-09-07)
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 }