blob: c640294db79829b56278e4aa22c633a77bfadac3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# Maintainer: Baptiste Grenier <baptiste@bapt.name>
pkgname=fetch-crl3
pkgver=3.0.23
pkgrel=1
pkgdesc="fetch-crl - the Certificate Revocation List retrieval tool"
arch=(any)
url="https://dist.igtf.net/distribution/util/fetch-crl3/"
license=('Apache')
depends=('perl')
source=(https://dist.eugridpma.info/distribution/util/$pkgname/fetch-crl-$pkgver.tar.gz)
md5sums=('bf94e8a70b7c18617c113b50936895f6')
package() {
cd "fetch-crl-$pkgver"
sed -i 's#/sbin#/bin#' Makefile
make PREFIX="$pkgdir/usr" ETC="$pkgdir/etc" CACHE="$pkgdir/var/cache" install
chmod +rx "$pkgdir/var/cache/fetch-crl"
}
|