blob: 9ce5dca75aed29aac4078888fb408dffed4aacb1 (
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
# Maintainer: Erich Eckner <arch at eckner dot net>
pkgname=crypt-expiry-check
pkgver=4.0.9
pkgrel=1
pkgdesc="Surveilance of expiry of gpg-keys and X.509 certificates"
arch=('any')
url="https://git.eckner.net/${pkgname}.git"
license=('GPL')
groups=()
depends=('openssl' 'gnupg')
makedepends=('help2man')
checkdepends=()
optdepends=()
provides=()
conflicts=()
replaces=()
backup=(
'etc/crypt-expiry.checks'
'etc/cron.daily/crypt-expiry-check'
)
options=()
source=(
"https://git.eckner.net/${pkgname}.git/snapshot/${pkgname}-${pkgver}.tar.xz"
)
sha512sums=('2c9a79662a39dd4d3c7f1bed3ea46a22f2593f4e80cf795854c150af6be6915ae9d57f68e1032d41d641cf23d0f5aa22896dce4bd215f85e9f5bfec3c2123425')
build () {
cd ${pkgname}-${pkgver}
make
}
package() {
cd ${pkgname}-${pkgver}
make DESTDIR="${pkgdir}" install
}
|