wok view unhide/receipt @ rev 22042

gcc83-lib-base: do NOT provide gcc-lib-base
Currently BOTH gcc-lib-base and gcc83-lib-base are installed on my SliTaz system. So, with the current (and longstanding) tazpkg limitations I can't update just gcc-lib-base: tazpkg always updates gcc83-lib-base for me instead. Now I can't run Firefox, Vivaldi, Chrome, etc. I think because of gcc-lib-base, but I not sure 1bsolutely.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Tue Oct 22 12:55:54 2019 +0300 (2019-10-22)
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 }