wok-next annotate unhide/receipt @ rev 21724

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