blob: 5cd7973e77695ea605fbed5cfc889cbf86c2c659 (
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
|
# Maintainer: Torsten Henschel <to at h6l dot de>
# Contributor: Karol Babioch <karol at babioch dot de>
pkgname=getssl-git
pkgver=2.52.r0.986e7f9
pkgrel=1
pkgdesc="Obtain SSL certificates from the letsencrypt.org ACME server. Suitable for automating the process on remote servers."
arch=('any')
url="https://github.com/srvrco/getssl"
license=('GPL-3.0-only')
depends=('bash' 'openssl' 'curl' 'bind-tools')
optdepends=('python: optional update scripts'
'python-dnspython: optional update scripts'
'python-boto3: optional update scripts')
makedepends=('git')
provides=('getssl')
conflicts=('getssl')
source=("$pkgname::git+https://github.com/srvrco/getssl.git")
sha512sums=('SKIP')
pkgver() {
cd "$srcdir/$pkgname"
git describe --long --tags | sed 's/^v//;s/\([^-]*-\)g/r\1/;s/-/./g'
}
package() {
cd "$srcdir/$pkgname"
make DESTDIR="$pkgdir/" install
}
|