wok view arping/receipt @ rev 11940

evince-doc: local html help only. Evince goes to www for help
author Samuel Trassare <samuel_trassare@yahoo.com>
date Wed Feb 29 21:48:25 2012 -0800 (2012-02-29)
parents
children 0bcec1fdfe98
line source
1 # SliTaz package receipt.
3 PACKAGE="arping"
4 VERSION="2.09"
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 cd $src
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 }