wok view logrotate/receipt @ rev 5755

get-opera: add description.txt
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Jul 03 12:54:45 2010 +0200 (2010-07-03)
parents
children 73b5177e96e3
line source
1 # SliTaz package receipt.
3 PACKAGE="logrotate"
4 VERSION="3.7.8"
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="http://www.sfr-fresh.com/unix/privat/$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=$src/_pkg install
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 mkdir -p $fs/usr $fs/etc
26 touch $fs/etc/logrotate.conf
27 cp -a $_pkg/usr/sbin $fs/usr
28 }