wok view chkexploit/receipt @ rev 24546

updated file, libmagic, libmagic-dev and python-magic (5.38 -> 5.41)
author Hans-G?nter Theisgen
date Fri Feb 25 07:20:29 2022 +0100 (2022-02-25)
parents f3e78a86c67b
children bc2b9d9bed6f
line source
1 # SliTaz package receipt.
3 PACKAGE="chkexploit"
4 VERSION="1.13"
5 CATEGORY="security"
6 SHORT_DESC="Check the system for vulnerabilities to some publicly available exploits."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL"
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 # What is the latest version available today?
14 current_version()
15 {
16 wget -O - ${WGET_URL%/*}/ 2>/dev/null | \
17 sed '/chkexploit-/!d;/tar/!d;s|.*chkexploit-||;s|.tar.*||' | sort -Vr | sed q
18 }
20 # Rules to gen a SliTaz package suitable for Tazpkg.
21 genpkg_rules()
22 {
23 mkdir -p $fs/usr/share/chkrootkit
24 cp $src/chkexploit $fs/usr/share/chkrootkit
25 }