wok-next view chkrootkit/receipt @ rev 6928

Up: elfutils to 0.149. Fixed it to build in clean chroot. Fixed it also to download sources with real wget by since sources are on https host. So now elfutils can download its sources just fine.
author Christopher Rogers <slaxemulator@gmail.com>
date Fri Oct 22 22:36:22 2010 +0000 (2010-10-22)
parents fd4eda949f1e
children cbfb348cb173
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 TARBALL="$PACKAGE-$VERSION.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 [ -f done.chkrootkit.u ] || patch -p1 < ../stuff/chkrootkit.u
17 touch done.chkrootkit.u
18 make sense
19 }
21 # Rules to gen a SliTaz package suitable for Tazpkg.
22 genpkg_rules()
23 {
24 mkdir -p $fs/usr/share/chkrootkit
25 for i in $(cd $src ; ls); do
26 case "$i" in
27 README*) cp $src/$i $fs/usr/share/chkrootkit;;
28 Makefile|*.*);;
29 *) cp $src/$i $fs/usr/share/chkrootkit;;
30 esac
31 done
32 }