wok annotate 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
rev   line source
sdaigl@48 1 # SliTaz package receipt.
sdaigl@48 2
sdaigl@48 3 PACKAGE="tcpdump"
Hans-G?nter@22013 4 VERSION="4.9.3"
sdaigl@48 5 CATEGORY="security"
Hans-G?nter@22013 6 TAGS="network security"
Hans-G?nter@22013 7 SHORT_DESC="A network traffic monitoring tool."
pascal@1065 8 MAINTAINER="sdaigl@lacitec.on.ca"
pascal@15133 9 LICENSE="BSD"
Hans-G?nter@22013 10 WEB_SITE="https://www.tcpdump.org/"
Hans-G?nter@22013 11
sdaigl@48 12 TARBALL="$PACKAGE-$VERSION.tar.gz"
Hans-G?nter@22013 13 WGET_URL="${WEB_SITE}release/$TARBALL"
sdaigl@48 14
Hans-G?nter@22013 15 DEPENDS="libcrypto libpcap openssl"
pascal@15325 16 BUILD_DEPENDS="libpcap libpcap-dev openssl-dev"
pascal@10460 17
sdaigl@48 18 # Rules to configure and make the package.
sdaigl@48 19 compile_rules()
sdaigl@48 20 {
Hans-G?nter@22013 21 ./configure \
Hans-G?nter@22013 22 --prefix=/usr \
Hans-G?nter@22013 23 --infodir=/usr/share/info \
Hans-G?nter@22013 24 --mandir=/usr/share/man \
Hans-G?nter@22013 25 $CONFIGURE_ARGS &&
Hans-G?nter@22013 26 make &&
pascal@15133 27 make DESTDIR=$DESTDIR install
sdaigl@48 28 }
sdaigl@48 29
sdaigl@48 30 # Rules to gen a SliTaz package suitable for Tazpkg.
sdaigl@48 31 genpkg_rules()
sdaigl@48 32 {
pankso@169 33 mkdir -p $fs/usr
pascal@15133 34 cp -a $install/usr/sbin $fs/usr
sdaigl@48 35 }