wok view unhide/receipt @ rev 23848

inkscape: update build_depends
author Richard Dunbar <mojo@slitaz.org>
date Sun Jun 14 23:18:03 2020 -0400 (2020-06-14)
parents d3305b8b397e
children 5f6c5106b1f5
line source
1 # SliTaz package receipt.
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 DEPENDS=""
15 BUILD_DEPENDS=""
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 CC="gcc -Wall -O2 --static"
21 $CC -pthread unhide-linux*.c unhide-output.c -o unhide
22 $CC unhide_rb.c -o unhide_rb
23 $CC unhide-tcp.c unhide-tcp-fast.c unhide-output.c -o unhide-tcp
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/sbin
31 cp -a $src/unhide $fs/usr/sbin
32 cp -a $src/unhide_rb $fs/usr/sbin
33 cp -a $src/unhide-tcp $fs/usr/sbin
34 }