wok diff p0f/receipt @ rev 21752

tazboot: shrink (again)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Jun 15 22:12:18 2019 +0200 (2019-06-15)
parents 51a1ebbda768
children c265f9cf4b14
line diff
     1.1 --- a/p0f/receipt	Fri Oct 18 19:43:55 2013 +0000
     1.2 +++ b/p0f/receipt	Sat Jun 15 22:12:18 2019 +0200
     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 -