wok view logrotate/receipt @ rev 14774

Up xorg-libXi (1.7.1.901), see http://www.x.org/wiki/Development/Security/Advisory-2013-05-23
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Jun 30 10:36:53 2013 +0200 (2013-06-30)
parents 90bf9e9c31ca
children 380ffe05937a
line source
1 # SliTaz package receipt.
3 PACKAGE="logrotate"
4 VERSION="3.8.2"
5 CATEGORY="system-tools"
6 SHORT_DESC="Automatic rotation compression, removal of log files."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.gz"
9 WEB_SITE="https://fedorahosted.org/logrotate/"
10 WGET_URL="https://fedorahosted.org/releases/l/o/logrotate/$TARBALL"
11 CONFIG_FILE="/etc/logrotate.conf"
13 DEPENDS="popt"
14 BUILD_DEPENDS="popt-dev wget"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 make && make PREFIX=$DESTDIR install
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr $fs/etc
27 echo -e "#Logrotate Config file\n\ninclude /etc/logrotate.d" \
28 > $fs/etc/logrotate.conf
29 cp -a $install/usr/sbin $fs/usr
30 }
32 post_install()
33 {
34 if [ -f $1/var/spool/cron/crontabs/root ]; then
35 echo "Runing post install command..."
36 echo -e "#Run log rotation\n25 6 * * * /usr/sbin/logrotate /etc/logrotate.conf " \
37 >> $1/var/spool/cron/crontabs/root
38 fi
39 }
42 post_remove()
43 {
44 if [ -f $1/var/spool/cron/crontabs/root ]; then
45 echo "Runing post install command..."
46 sed -i s!.*logrotate.*!! $1/var/spool/cron/crontabs/root
47 fi
48 }