wok view tcpdump/receipt @ rev 23848

inkscape: update build_depends
author Richard Dunbar <mojo@slitaz.org>
date Sun Jun 14 23:18:03 2020 -0400 (2020-06-14)
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 }