contrib/certbot/Pkgfile

20 lines
628 B
Plaintext
Raw Normal View History

2022-03-27 16:25:15 +02:00
# Description: get your site on https://
# URL: https://certbot.eff.org/
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on: python3-acme python3-configargparse python3-configobj python3-distro python3-parsedatetime python3-zope-component
name=certbot
2023-10-25 17:38:25 +02:00
version=2.7.3
2022-04-08 00:05:46 +02:00
release=1
2022-03-27 16:25:15 +02:00
source=(https://pypi.io/packages/source/c/certbot/certbot-$version.tar.gz)
build() {
cd $name-$version
/usr/bin/python3 -m build --wheel --no-isolation
2022-09-10 21:49:06 +02:00
/usr/bin/python3 -m installer --destdir=$PKG dist/*.whl
2022-03-27 16:25:15 +02:00
mkdir -p $PKG/{etc,var/lib,var/log}/letsencrypt
chmod 700 $PKG/var/log/letsencrypt
chmod 755 $PKG/usr/bin/certbot
}