wok annotate chkrootkit/receipt @ rev 25811

Up rsync (3.4.1)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Jan 17 16:05:26 2025 +0000 (2 days ago)
parents 274c0ec61c53
children
rev   line source
pascal@1343 1 # SliTaz package receipt.
pascal@1343 2
pascal@1343 3 PACKAGE="chkrootkit"
pascal@25733 4 VERSION="0.58b"
pascal@18139 5 CATEGORY="security"
pascal@1343 6 SHORT_DESC="Locally checks for signs of a rootkit."
pascal@1343 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@15579 8 LICENSE="BSD"
pascal@5787 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@25547 10 WEB_SITE="https://www.chkrootkit.org/"
pascal@25732 11 WGET_URL="ftp://ftp.chkrootkit.org:21/pub/seg/pac/$TARBALL"
pascal@1343 12
pascal@24491 13 # What is the latest version available today?
pascal@24491 14 current_version()
pascal@24491 15 {
pascal@25732 16 wget -O - ftp://ftp.chkrootkit.org:21/pub/seg/pac/ 2>/dev/null | \
pascal@25732 17 sed '/chkrootkit.tar/!d;s|.* -> chkrootkit-||;s|.tar.*||;q'
pascal@24491 18 }
pascal@24491 19
pascal@1343 20 # Rules to configure and make the package.
pascal@1343 21 compile_rules()
pascal@1343 22 {
pascal@25733 23 patch -p1 < $stuff/chkrootkit.u
pascal@1343 24 make sense
pascal@1343 25 }
pascal@1343 26
pascal@1343 27 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@1343 28 genpkg_rules()
pascal@1343 29 {
pascal@1343 30 mkdir -p $fs/usr/share/chkrootkit
pascal@22229 31 cp $stuff/spectre-meltdown-checker.sh $fs/usr/share/chkrootkit
pascal@1343 32 for i in $(cd $src ; ls); do
pascal@1343 33 case "$i" in
pascal@1343 34 README*) cp $src/$i $fs/usr/share/chkrootkit;;
pascal@1343 35 Makefile|*.*);;
pascal@1343 36 *) cp $src/$i $fs/usr/share/chkrootkit;;
pascal@1343 37 esac
pascal@1343 38 done
pascal@1343 39 }