wok view arping/receipt @ rev 11275

Up: lxappearance (0.5.1)
author Alexander Medvedev <devl547@gmail.com>
date Thu Nov 10 03:10:17 2011 +0000 (2011-11-10)
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 }