wok view chkrootkit/receipt @ rev 16659

linphone: g_thread_init() is no longer necessary since glib version 2.32 and should not be used
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed May 14 06:07:40 2014 +0000 (2014-05-14)
parents cbfb348cb173
children 53abdfcf11d4
line source
1 # SliTaz package receipt.
3 PACKAGE="chkrootkit"
4 VERSION="0.49"
5 CATEGORY="system-tools"
6 SHORT_DESC="Locally checks for signs of a rootkit."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="BSD"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://www.chkrootkit.org/"
11 WGET_URL="ftp://ftp.pangeia.com.br/pub/seg/pac/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 [ -f done.chkrootkit.u ] || patch -p1 < $stuff/chkrootkit.u
18 touch done.chkrootkit.u
19 make sense
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 mkdir -p $fs/usr/share/chkrootkit
26 for i in $(cd $src ; ls); do
27 case "$i" in
28 README*) cp $src/$i $fs/usr/share/chkrootkit;;
29 Makefile|*.*);;
30 *) cp $src/$i $fs/usr/share/chkrootkit;;
31 esac
32 done
33 }