summaryrefslogtreecommitdiff
path: root/certbot/Pkgfile
blob: 947c0b23e3f51947730c3ddbafc9d8ebca5c0c30 (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=1.25.0
    8 release=2
    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 install --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 }

Generated by cgit