wok view wireshark/receipt @ rev 11574

Replace all '-j 4' occurences by ''
author Antoine Bodin <gokhlayeh@slitaz.org>
date Mon Jan 02 23:06:19 2012 +0100 (2012-01-02)
parents 40b8672a84a1
children 96eb24dd8b9d
line source
1 # SliTaz package receipt.
3 PACKAGE="wireshark"
4 VERSION="1.6.4"
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 libgcrypt portaudio libpcap libkrb5"
14 BUILD_DEPENDS="gnutls-dev libgpg-error-dev libcap-dev libpcap-dev gtk+-dev
15 libgcrypt-dev flex libtasn1-dev bison perl"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 ./configure \
22 --prefix=/usr \
23 --mandir=/usr/share/man \
24 --enable-setuid-install \
25 --disable-portaudio \
26 $CONFIGURE_ARGS &&
27 make $MAKEFLAGS &&
28 make install
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 mkdir -p $fs/usr/lib $fs/usr/share
35 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
36 cp -a $_pkg/usr/lib/wireshark $fs/usr/lib
37 rm $fs/usr/lib/wireshark/plugins/$VERSION/*.la
38 cp -a $_pkg/usr/bin $fs/usr
39 cp -a $_pkg/usr/share/wireshark $fs/usr/share
40 }