wok view chkrootkit/receipt @ rev 1371

Add jack-audio-connection-kit-dev
author Allan Pinto <allan316@gmail.com>
date Thu Sep 11 19:07:18 2008 +0000 (2008-09-11)
parents
children fd4eda949f1e
line source
1 # SliTaz package receipt.
3 PACKAGE="chkrootkit"
4 VERSION="0.48"
5 CATEGORY="system-tools"
6 SHORT_DESC="Locally checks for signs of a rootkit."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 TARBALL="$PACKAGE.tar.gz"
9 WEB_SITE="http://www.chkrootkit.org/"
10 WGET_URL="ftp://ftp.pangeia.com.br/pub/seg/pac/$TARBALL"
12 # Rules to configure and make the package.
13 compile_rules()
14 {
15 cd $src
16 patch -p1 < ../stuff/chkrootkit.u
17 make sense
18 }
20 # Rules to gen a SliTaz package suitable for Tazpkg.
21 genpkg_rules()
22 {
23 mkdir -p $fs/usr/share/chkrootkit
24 for i in $(cd $src ; ls); do
25 case "$i" in
26 README*) cp $src/$i $fs/usr/share/chkrootkit;;
27 Makefile|*.*);;
28 *) cp $src/$i $fs/usr/share/chkrootkit;;
29 esac
30 done
31 }