blob: 535374d946d9e6e1df40bc61a9a5ad3b03a22082 (
plain)
1 # Description: RFC 2136 DNS Authenticator plugin for Certbot
2 # URL: https://pypi.python.org/pypi/certbot-dns-rfc2136
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4 # Depends on: certbot python3-dnspython
5
6 name=certbot-dns-rfc2136
7 version=2.2.0
8 release=1
9 source=(https://pypi.io/packages/source/c/certbot-dns-rfc2136/certbot-dns-rfc2136-$version.tar.gz)
10
11 build() {
12 cd $name-$version
13 /usr/bin/python3 -m build --wheel --no-isolation
14 /usr/bin/python3 -m installer --destdir=$PKG dist/*.whl
15 }
|