16 lines
479 B
Plaintext
16 lines
479 B
Plaintext
# Description: Nginx plugin for Lets Encrypt client
|
|
# URL: https://pypi.python.org/pypi/certbot-nginx
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
# Depends on: certbot python3-mock python3-pyparsing
|
|
|
|
name=certbot-nginx
|
|
version=2.7.4
|
|
release=1
|
|
source=(https://pypi.io/packages/source/c/certbot-nginx/certbot-nginx-$version.tar.gz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
/usr/bin/python3 -m build --wheel --no-isolation
|
|
/usr/bin/python3 -m installer --destdir=$PKG dist/*.whl
|
|
}
|