wok diff unhide/receipt @ rev 19505

Rollback liboping (1.8.0)
author Paul Issott <paul@slitaz.org>
date Sat Nov 19 09:14:20 2016 +0000 (2016-11-19)
parents
children ab5565177ad5
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/unhide/receipt	Sat Nov 19 09:14:20 2016 +0000
     1.3 @@ -0,0 +1,32 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="unhide"
     1.7 +VERSION="20121229"
     1.8 +CATEGORY="security"
     1.9 +SHORT_DESC="Forensic tool to find hidden processes and TCP/UDP ports."
    1.10 +MAINTAINER="pascal.bellard@slitaz.org"
    1.11 +TARBALL="$PACKAGE-$VERSION.tgz"
    1.12 +LICENSE="GPL3"
    1.13 +WEB_SITE="http://www.unhide-forensics.info/?Linux"
    1.14 +WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
    1.15 +
    1.16 +DEPENDS=""
    1.17 +BUILD_DEPENDS=""
    1.18 +
    1.19 +# Rules to configure and make the package.
    1.20 +compile_rules()
    1.21 +{
    1.22 +	CC="gcc -Wall -O2 --static"
    1.23 +	$CC -pthread unhide-linux*.c unhide-output.c -o unhide
    1.24 +	$CC unhide_rb.c -o unhide_rb
    1.25 +	$CC unhide-tcp.c unhide-tcp-fast.c unhide-output.c -o unhide-tcp
    1.26 +}
    1.27 +
    1.28 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.29 +genpkg_rules()
    1.30 +{
    1.31 +	mkdir -p $fs/usr/sbin
    1.32 +	cp -a $src/unhide $fs/usr/sbin
    1.33 +	cp -a $src/unhide_rb $fs/usr/sbin
    1.34 +	cp -a $src/unhide-tcp $fs/usr/sbin
    1.35 +}