blob: 6e9f4b0997a850633a9532a126674e1c28a4a887 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# Contributor: Jakub Jirutka <jakub@jirutka.cz>
# Maintainer: Jakub Jirutka <jakub@jirutka.cz>
pkgname=acme-client-plus
pkgver=0.1.1
pkgrel=0
pkgdesc="Script for periodic renewal of certificates using BSD's acme-client"
url="https://github.com/jirutka/acme-client-plus"
arch="noarch"
license="ISC"
depends="acme-client libressl"
options="!check" # no tests provided
source="$pkgname-$pkgver.tar.gz::https://github.com/jirutka/$pkgname/archive/v$pkgver.tar.gz"
builddir="$srcdir/$pkgname-$pkgver"
package() {
cd "$builddir"
make install DESTDIR="$pkgdir" prefix=/usr
}
sha512sums="abdd52cc805b2bda402f4930f403d9152507a635a09bb660fff2d9fcf7ecebf5138abd9e45c41fb0e703848a7cf909fc0b2fa4802108c190b62994bd63523519 acme-client-plus-0.1.1.tar.gz"
|