59 lines
1.6 KiB
Bash
59 lines
1.6 KiB
Bash
#!/usr/bin/bash
|
|
# JOBoRun : Jwm OpenBox Obarun RUNit
|
|
# Maintainer : Joe Bo Run <joborun@disroot.org>
|
|
# PkgSource : url="https://gittea.disroot.org/joborun-pkg/jobcore/$pkgname"
|
|
# Website : https://pozol.eu
|
|
#-----------------------------------------| DESCRIPTION |---------------------------------------
|
|
|
|
pkgname=logrotate
|
|
pkgver=3.21.0
|
|
pkgrel=02
|
|
pkgdesc="Rotates system logs automatically w/o systemd"
|
|
arch=('x86_64')
|
|
url="https://github.com/logrotate/logrotate"
|
|
depends=('popt' 'gzip' 'acl')
|
|
backup=('etc/logrotate.conf')
|
|
source=("https://github.com/logrotate/logrotate/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.xz"{,.asc}
|
|
'logrotate.conf')
|
|
|
|
build() {
|
|
cd "$srcdir/${pkgname}-${pkgver}"
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--sbindir=/usr/bin \
|
|
--mandir=/usr/share/man \
|
|
--with-compress-command=/usr/bin/gzip \
|
|
--with-uncompress-command=/usr/bin/gunzip \
|
|
--with-default-mail-command=/usr/bin/mail \
|
|
--with-acl
|
|
make
|
|
}
|
|
|
|
check() {
|
|
cd "$srcdir/${pkgname}-${pkgver}"
|
|
|
|
make test
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir/${pkgname}-${pkgver}"
|
|
|
|
make DESTDIR="$pkgdir" install
|
|
|
|
install -dm755 "$pkgdir/etc/logrotate.d"
|
|
install -Dm644 "$srcdir/logrotate.conf" "$pkgdir/etc/logrotate.conf"
|
|
|
|
}
|
|
|
|
#---- license gpg-key sha256sums ----
|
|
|
|
license=('GPL')
|
|
|
|
validpgpkeys=('992A96E075056E79CD8214F9873DB37572A37B36')
|
|
|
|
sha256sums=(8fa12015e3b8415c121fc9c0ca53aa872f7b0702f543afda7e32b6c4900f6516 # logrotate-3.21.0.tar.xz
|
|
e38d481becc5546a236e92002605b73760d73f18b000153bc2d838ed085da456 # logrotate-3.21.0.tar.xz.asc
|
|
42e289081a4d6b144c89dbfc49bde7a01b383055bf90a05a764f8c3dee25a6ce) # logrotate.conf
|
|
|
|
|