# HG changeset patch # User Hans-G?nter Theisgen # Date 1571497133 -3600 # Node ID 2448da3bb9c5ea78b830eb29d6518c5a728e4d73 # Parent 7dbabbb8d2fe00756f29e7b61e4785fa2f806216 updated tcpdump (4.4.0 -> 4.9.3) diff -r 7dbabbb8d2fe -r 2448da3bb9c5 tcpdump/receipt --- a/tcpdump/receipt Sat Oct 19 15:47:58 2019 +0100 +++ b/tcpdump/receipt Sat Oct 19 15:58:53 2019 +0100 @@ -1,26 +1,29 @@ # SliTaz package receipt. PACKAGE="tcpdump" -VERSION="4.4.0" +VERSION="4.9.3" CATEGORY="security" -SHORT_DESC="cli wire sniffer" +TAGS="network security" +SHORT_DESC="A network traffic monitoring tool." MAINTAINER="sdaigl@lacitec.on.ca" LICENSE="BSD" +WEB_SITE="https://www.tcpdump.org/" + TARBALL="$PACKAGE-$VERSION.tar.gz" -WEB_SITE="http://www.tcpdump.org/" -WGET_URL="http://www.tcpdump.org/release/$TARBALL" -TAGS="network security" +WGET_URL="${WEB_SITE}release/$TARBALL" -DEPENDS="libcrypto openssl libpcap" +DEPENDS="libcrypto libpcap openssl" BUILD_DEPENDS="libpcap libpcap-dev openssl-dev" # Rules to configure and make the package. compile_rules() { - cd $src - ./configure --prefix=/usr --infodir=/usr/share/info \ - --mandir=/usr/share/man $CONFIGURE_ARGS - make + ./configure \ + --prefix=/usr \ + --infodir=/usr/share/info \ + --mandir=/usr/share/man \ + $CONFIGURE_ARGS && + make && make DESTDIR=$DESTDIR install }