blob: 18a25346dff9a9066c5de1ea9bee00e213e42e97 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# Maintainer: lynix <lynix47@gmail.com>
pkgname=checkrun.sh
pkgver=1.3
pkgrel=1
pkgdesc="Cron-style mailing wrapper (not only) for systemd .timer units"
url="https://github.com/lynix/checkrun.sh"
arch=('any')
license=('MIT')
depends=('bash' 'coreutils')
optdepends=()
makedepends=()
conflicts=( 'checkrun.sh-git' )
replaces=()
backup=()
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/lynix/${pkgname}/archive/v${pkgver}.tar.gz")
md5sums=('dde9a6b49e0c171aa50e58080118e074')
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
make DESTDIR="${pkgdir}" install
}
# vim:set ts=2 sw=2 et:
|