wok rev 21654

updated p0f (3.01b -> 3.09b)
author Hans-G?nter Theisgen
date Fri May 31 14:51:22 2019 +0100 (2019-05-31)
parents 44d55cb24c23
children f9f616c89890
files p0f/receipt
line diff
     1.1 --- a/p0f/receipt	Thu May 30 17:55:07 2019 +0200
     1.2 +++ b/p0f/receipt	Fri May 31 14:51:22 2019 +0100
     1.3 @@ -1,13 +1,14 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="p0f"
     1.7 -VERSION="3.01b"
     1.8 +VERSION="3.09b"
     1.9  CATEGORY="network"
    1.10 -SHORT_DESC="passive OS fingerprinting tool"
    1.11 +SHORT_DESC="Passive OS fingerprinting tool."
    1.12  MAINTAINER="slaxemulator@gmail.com"
    1.13  LICENSE="LGPL"
    1.14 +WEB_SITE="http://lcamtuf.coredump.cx/p0f.shtml"
    1.15 +
    1.16  TARBALL="$PACKAGE-$VERSION.tgz"
    1.17 -WEB_SITE="http://lcamtuf.coredump.cx/p0f.shtml"
    1.18  WGET_URL="http://lcamtuf.coredump.cx/p0f${VERSION%.*}/releases/$TARBALL"
    1.19  
    1.20  BUILD_DEPENDS="libpcap-dev"
    1.21 @@ -15,16 +16,22 @@
    1.22  # Rules to configure and make the package.
    1.23  compile_rules()
    1.24  {
    1.25 -	cd $src
    1.26 -	make && cd tools && make
    1.27 +	make &&
    1.28 +	cd tools &&
    1.29 +	make
    1.30  }
    1.31  
    1.32  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.33  genpkg_rules()
    1.34  {
    1.35 -	mkdir -p $fs/usr/sbin $fs/etc/p0f
    1.36 -	install -m744 $src/p0f $src/tools/p0f-client $src/tools/p0f-sendsyn \
    1.37 -		$src/tools/p0f-sendsyn6 $fs/usr/sbin
    1.38 +	mkdir -p $fs/usr/sbin
    1.39 +	mkdir -p $fs/etc/p0f
    1.40 +
    1.41 +	install -m744			\
    1.42 +		$src/p0f		\
    1.43 +		$src/tools/p0f-client	\
    1.44 +		$src/tools/p0f-sendsyn	\
    1.45 +		$src/tools/p0f-sendsyn6	\
    1.46 +		$fs/usr/sbin
    1.47  	install -m644 $src/p0f.fp $fs/etc/p0f
    1.48  }
    1.49 -