wok-current view unhide/receipt @ rev 20383

p11-kit update: 0.6 (2011) -> 0.23.12 (2018)
author Erkan Yilmaz <erkan@slitaz.org>
date Wed Jun 20 09:49:15 2018 +0000 (2018-06-20)
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 }