wok view unhide/receipt @ rev 17057

syslinux/c32box: x86_64 auto select
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Aug 21 09:56:57 2014 +0200 (2014-08-21)
parents
children ab5565177ad5
line source
1 # SliTaz package receipt.
3 PACKAGE="unhide"
4 VERSION="20121229"
5 CATEGORY="security"
6 SHORT_DESC="Forensic tool to find hidden processes and TCP/UDP ports."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tgz"
9 LICENSE="GPL3"
10 WEB_SITE="http://www.unhide-forensics.info/?Linux"
11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
13 DEPENDS=""
14 BUILD_DEPENDS=""
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 CC="gcc -Wall -O2 --static"
20 $CC -pthread unhide-linux*.c unhide-output.c -o unhide
21 $CC unhide_rb.c -o unhide_rb
22 $CC unhide-tcp.c unhide-tcp-fast.c unhide-output.c -o unhide-tcp
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/sbin
29 cp -a $src/unhide $fs/usr/sbin
30 cp -a $src/unhide_rb $fs/usr/sbin
31 cp -a $src/unhide-tcp $fs/usr/sbin
32 }