wok diff 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 diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/chkrootkit/receipt	Thu Sep 11 19:07:18 2008 +0000
     1.3 @@ -0,0 +1,32 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="chkrootkit"
     1.7 +VERSION="0.48"
     1.8 +CATEGORY="system-tools"
     1.9 +SHORT_DESC="Locally checks for signs of a rootkit."
    1.10 +MAINTAINER="pascal.bellard@slitaz.org"
    1.11 +TARBALL="$PACKAGE.tar.gz"
    1.12 +WEB_SITE="http://www.chkrootkit.org/"
    1.13 +WGET_URL="ftp://ftp.pangeia.com.br/pub/seg/pac/$TARBALL"
    1.14 +
    1.15 +# Rules to configure and make the package.
    1.16 +compile_rules()
    1.17 +{
    1.18 +	cd $src
    1.19 +	patch -p1 < ../stuff/chkrootkit.u
    1.20 +	make sense
    1.21 +}
    1.22 +
    1.23 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.24 +genpkg_rules()
    1.25 +{
    1.26 +	mkdir -p $fs/usr/share/chkrootkit
    1.27 +	for i in $(cd $src ; ls); do
    1.28 +		case "$i" in
    1.29 +		README*) cp $src/$i $fs/usr/share/chkrootkit;;
    1.30 +		Makefile|*.*);;
    1.31 +		*) cp $src/$i $fs/usr/share/chkrootkit;;
    1.32 +		esac
    1.33 +	done
    1.34 +}
    1.35 +