wok-current view tcpdump/receipt @ rev 22418
libxfce4util: build fails for 4.14, using last release 4.12: error: expected ')' before 'GObject'
author | Erkan Yilmaz <erkan@slitaz.org> |
---|---|
date | Sun Dec 15 08:33:18 2019 +0000 (2019-12-15) |
parents | 2a6ee064ed2f |
children | 453c249b6219 |
line source
1 # SliTaz package receipt.
3 PACKAGE="tcpdump"
4 VERSION="4.9.3"
5 CATEGORY="security"
6 TAGS="network security"
7 SHORT_DESC="A network traffic monitoring tool."
8 MAINTAINER="sdaigl@lacitec.on.ca"
9 LICENSE="BSD"
10 WEB_SITE="https://www.tcpdump.org/"
12 TARBALL="$PACKAGE-$VERSION.tar.gz"
13 WGET_URL="${WEB_SITE}release/$TARBALL"
15 DEPENDS="libcrypto libpcap openssl"
16 BUILD_DEPENDS="libpcap libpcap-dev openssl-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 ./configure \
22 --prefix=/usr \
23 --infodir=/usr/share/info \
24 --mandir=/usr/share/man \
25 $CONFIGURE_ARGS &&
26 make &&
27 make DESTDIR=$DESTDIR install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr
34 cp -a $install/usr/sbin $fs/usr
35 }