wok view wireshark/receipt @ rev 10996

Up: clamav to 0.97.2.
author Christopher Rogers <slaxemulator@gmail.com>
date Thu Oct 13 02:48:58 2011 +0000 (2011-10-13)
parents fc53ede5736e
children 40b8672a84a1
line source
1 # SliTaz package receipt.
3 PACKAGE="wireshark"
4 VERSION="1.6.2"
5 CATEGORY="network"
6 SHORT_DESC="Wireshark is an award-winning network protocol analyzer."
7 MAINTAINER="pankso@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
9 WEB_SITE="http://www.wireshark.org/"
10 WGET_URL="http://media-2.cacetech.com/wireshark/src/$TARBALL"
11 TAGS="network analyzer"
13 DEPENDS="gnutls libgpg-error libcap gtk+ pcre xorg-libXdamage libcomerr3 attr \
14 portaudio libpcap libkrb5"
15 BUILD_DEPENDS="gnutls-dev libgpg-error-dev libcap-dev libpcap-dev gtk+-dev \
16 libgcrypt-dev flex libtasn1-dev bison perl"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 cd $src
22 ./configure \
23 --prefix=/usr \
24 --mandir=/usr/share/man \
25 --enable-setuid-install \
26 --disable-portaudio \
27 $CONFIGURE_ARGS &&
28 make -j 4 &&
29 make install
30 }
32 # Rules to gen a SliTaz package suitable for Tazpkg.
33 genpkg_rules()
34 {
35 mkdir -p $fs/usr/lib $fs/usr/share
36 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
37 cp -a $_pkg/usr/lib/wireshark $fs/usr/lib
38 rm $fs/usr/lib/wireshark/plugins/$VERSION/*.la
39 cp -a $_pkg/usr/bin $fs/usr
40 cp -a $_pkg/usr/share/wireshark $fs/usr/share
41 }