wok view tcpdump/receipt @ rev 11913

Add perl-test-deep.
author Christopher Rogers <slaxemulator@gmail.com>
date Wed Feb 29 16:25:20 2012 -0500 (2012-02-29)
parents f0467e0fd4b2
children 1555db35e7e5
line source
1 # SliTaz package receipt.
3 PACKAGE="tcpdump"
4 VERSION="3.9.8"
5 CATEGORY="security"
6 SHORT_DESC="cli wire sniffer"
7 MAINTAINER="sdaigl@lacitec.on.ca"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="http://www.tcpdump.org/"
10 WGET_URL="http://www.tcpdump.org/release/$TARBALL"
11 TAGS="network security"
13 DEPENDS="libcrypto openssl libpcap"
14 BUILD_DEPENDS="libpcap libpcap-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure --prefix=/usr --infodir=/usr/share/info \
21 --mandir=/usr/share/man $CONFIGURE_ARGS
22 make
23 make DESTDIR=$PWD/_pkg install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr
30 cp -a $_pkg/usr/sbin $fs/usr
31 }