1
0
mirror of https://github.com/moepman/acertmgr.git synced 2024-11-15 02:45:27 +01:00
acertmgr/docs/archlinux/python2-acertmgr/PKGBUILD
Kishi85 4f0fe2c74a tools: Add support for Ed25519 and Ed448 account keys
Add support for Ed25519 and Ed448 account keys in addition
to already supported algorithms
2019-04-16 19:12:25 +02:00

36 lines
975 B
Bash

pkgname=python2-acertmgr
_pkgname=acertmgr
pkgver=v0.0.0
pkgrel=1
pkgdesc='An automated certificate manager using ACME/letsencrypt'
arch=('any')
url='https://github.com/moepman/acertmgr'
license=('ISC')
depends=('python2-cryptography>=0.6')
optdepends=('python2-yaml: Support config files in YAML format'
'python2-idna: Support conversion of unicode domains'
'python2-dnspython: Support for dns challenge handlers'
'python2-cryptography>=2.1: Support for the OCSP must-staple flag'
'python2-cryptography>=2.6: Support for Ed25519 key support'
)
makedepends=('git')
conflicts=('python-acertmgr')
provides=('python-acertmgr')
source=('git://github.com/moepman/acertmgr.git')
md5sums=('SKIP')
pkgver() {
cd $_pkgname
git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
}
build() {
cd $_pkgname
python2 setup.py build
}
package() {
cd $_pkgname
python2 setup.py install --root=${pkgdir} --optimize=1
}