wok view arping/receipt @ rev 12657

tightvnc: fix rgb path
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Apr 30 18:28:33 2012 +0200 (2012-04-30)
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 }