blob: cbc2e1f8f7f823367c3ea28d157b6228981fdb87 (
plain)
1 # Description: get your site on https://
2 # URL: https://certbot.eff.org/
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4 # Depends on: python3-acme python3-configargparse python3-configobj python3-distro python3-parsedatetime python3-zope-component
5
6 name=certbot
7 version=2.2.0
8 release=1
9 source=(https://pypi.io/packages/source/c/certbot/certbot-$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
16 mkdir -p $PKG/{etc,var/lib,var/log}/letsencrypt
17 chmod 700 $PKG/var/log/letsencrypt
18 chmod 755 $PKG/usr/bin/certbot
19 }
|