wok-current view logrotate/receipt @ rev 3561
Add: mingw32
| author | Matthew Sheets <rcx@zoominternet.net> | 
|---|---|
| date | Wed Jun 24 10:32:56 2009 +0000 (2009-06-24) | 
| 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 }