summaryrefslogtreecommitdiff
path: root/testing/logrotate/PKGBUILD
diff options
context:
space:
mode:
authorParabola <dev@list.parabolagnulinux.org>2011-07-11 18:35:04 +0000
committerParabola <dev@list.parabolagnulinux.org>2011-07-11 18:35:04 +0000
commit1a1b748f1738b1989a834d75b1623be21bf9bab5 (patch)
treed99e645120dc197bc3bcbcd96b1bb89e4e68bf4f /testing/logrotate/PKGBUILD
parent139460a7a8b085588b699c488fd19b166db18a74 (diff)
Mon Jul 11 18:34:51 UTC 2011
Diffstat (limited to 'testing/logrotate/PKGBUILD')
-rw-r--r--testing/logrotate/PKGBUILD44
1 files changed, 0 insertions, 44 deletions
diff --git a/testing/logrotate/PKGBUILD b/testing/logrotate/PKGBUILD
deleted file mode 100644
index 95a0681bd..000000000
--- a/testing/logrotate/PKGBUILD
+++ /dev/null
@@ -1,44 +0,0 @@
-# $Id: PKGBUILD 130804 2011-07-08 03:53:21Z eric $
-# Maintainer: Aaron Griffin <aaron@archlinux.org>
-# Contributor: Judd Vinet <jvinet@zeroflux.org>
-
-pkgname=logrotate
-pkgver=3.8.0
-pkgrel=1
-pkgdesc="Rotates system logs automatically"
-arch=('i686' 'x86_64')
-url="https://fedorahosted.org/logrotate/"
-license=('GPL')
-groups=('base')
-depends=('popt' 'cron' 'gzip')
-backup=('etc/logrotate.conf')
-source=(https://fedorahosted.org/releases/l/o/logrotate/logrotate-${pkgver}.tar.gz
- logrotate.conf
- logrotate.cron.daily)
-md5sums=('590f77c13077a4c384dbec7ca9c5f242'
- '462a5f364717461537eb2ae6394ad23e'
- '8e23d5d4cc29b1e055b24df87e355cdc')
-
-build() {
- cd "$srcdir/${pkgname}-${pkgver}"
-
- sed -i 's|#define DEFAULT_MAIL_COMMAND .*|#define DEFAULT_MAIL_COMMAND "/usr/bin/mail"|'\
- config.h
- sed -i "s|CFLAGS = -Wall|CFLAGS = -Wall $CFLAGS|" Makefile
- sed -i 's|$(BASEDIR)/man|$(BASEDIR)/share/man|' Makefile
-
- make
-}
-
-check() {
- cd "$srcdir/${pkgname}-${pkgver}"
- make test
-}
-
-package() {
- cd "$srcdir/${pkgname}-${pkgver}"
- make PREFIX="$pkgdir" install
-
- install -Dm644 "$srcdir/logrotate.conf" "$pkgdir/etc/logrotate.conf"
- install -Dm744 "$srcdir/logrotate.cron.daily" "$pkgdir/etc/cron.daily/logrotate"
-}