wok view logrotate/receipt @ rev 13188

Up: logrotate to 3.8.2.
author Christopher Rogers <slaxemulator@gmail.com>
date Fri Aug 03 10:02:57 2012 +0000 (2012-08-03)
parents 2dde678153c7
children 1a2778defe0c
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 DEPENDS="popt"
12 BUILD_DEPENDS="popt-dev"
13 CONFIG_FILE="/etc/logrotate.conf"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 make && make PREFIX=$DESTDIR install
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 mkdir -p $fs/usr $fs/etc
26 echo -e "#Logrotate Config file\n\ninclude /etc/logrotate.d" \
27 > $fs/etc/logrotate.conf
28 cp -a $install/usr/sbin $fs/usr
29 }
31 post_install()
32 {
33 if [ -f $1/var/spool/cron/crontabs/root ]; then
34 echo "Runing post install command..."
35 echo -e "#Run log rotation\n25 6 * * * /usr/sbin/logrotate /etc/logrotate.conf " \
36 >> $1/var/spool/cron/crontabs/root
37 fi
38 }
41 post_remove()
42 {
43 if [ -f $1/var/spool/cron/crontabs/root ]; then
44 echo "Runing post install command..."
45 sed -i s!.*logrotate.*!! $1/var/spool/cron/crontabs/root
46 fi
47 }