# HG changeset patch # User Pascal Bellard # Date 1392046437 0 # Node ID d3305b8b397ee602ff42b9b96e2aa811d5c43545 # Parent eab35a9f8d162e1d5589180575e053d716b397b7 Add unhide diff -r eab35a9f8d16 -r d3305b8b397e unhide/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/unhide/receipt Mon Feb 10 15:33:57 2014 +0000 @@ -0,0 +1,32 @@ +# SliTaz package receipt. + +PACKAGE="unhide" +VERSION="20121229" +CATEGORY="security" +SHORT_DESC="Forensic tool to find hidden processes and TCP/UDP ports." +MAINTAINER="pascal.bellard@slitaz.org" +TARBALL="$PACKAGE-$VERSION.tgz" +LICENSE="GPL3" +WEB_SITE="http://www.unhide-forensics.info/?Linux" +WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" + +DEPENDS="" +BUILD_DEPENDS="" + +# Rules to configure and make the package. +compile_rules() +{ + CC="gcc -Wall -O2 --static" + $CC -pthread unhide-linux*.c unhide-output.c -o unhide + $CC unhide_rb.c -o unhide_rb + $CC unhide-tcp.c unhide-tcp-fast.c unhide-output.c -o unhide-tcp +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + mkdir -p $fs/usr/sbin + cp -a $src/unhide $fs/usr/sbin + cp -a $src/unhide_rb $fs/usr/sbin + cp -a $src/unhide-tcp $fs/usr/sbin +}