wok-next view unhide/receipt @ rev 21721

created recipes for efivar and efibootmgr
author Hans-G?nter Theisgen
date Tue Sep 01 10:09:15 2020 +0100 (2020-09-01)
parents da9e80c5d4bb
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="unhide"
4 VERSION="20130526"
5 CATEGORY="security"
6 SHORT_DESC="Forensic tool to find hidden processes and TCP/UDP ports"
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL3"
9 WEB_SITE="http://www.unhide-forensics.info/?Linux"
11 TARBALL="$PACKAGE-$VERSION.tgz"
12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
14 compile_rules() {
15 CC="gcc -Wall -O2 --static"
16 $CC -pthread unhide-linux*.c unhide-output.c -o unhide
17 $CC unhide_rb.c -o unhide_rb
18 $CC unhide-tcp.c unhide-tcp-fast.c unhide-output.c -o unhide-tcp
20 mkdir -p $install/usr/sbin/
21 cp unhide unhide_rb unhide-tcp $install/usr/sbin/
23 cook_pick_manpages man/*.8
24 mkdir -p $install/usr/share/man/es/man8/ $install/usr/share/man/fr/man8/
25 cp man/es/*.8 $install/usr/share/man/es/man8/
26 cp man/fr/*.8 $install/usr/share/man/fr/man8/
27 }
29 genpkg_rules() {
30 copy @std
31 }