Date: Thursday, March 22, 2018 @ 11:43:59 Author: svenstaro Revision: 310473
Add acme-tiny as an optdep of ansible Added: acme-tiny/ acme-tiny/repos/ acme-tiny/trunk/ acme-tiny/trunk/PKGBUILD ----------+ PKGBUILD | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) Added: acme-tiny/trunk/PKGBUILD =================================================================== --- acme-tiny/trunk/PKGBUILD (rev 0) +++ acme-tiny/trunk/PKGBUILD 2018-03-22 11:43:59 UTC (rev 310473) @@ -0,0 +1,20 @@ +# Maintainer: Sven-Hendrik Haase <[email protected]> +# Contributor: Tom Hacohen <[email protected]> +pkgname=acme-tiny +pkgver=4.0.3 +pkgrel=1 +pkgdesc="A tiny script to issue and renew TLS certs from Let's Encrypt" +url="https://github.com/diafygi/acme-tiny" +depends=('python' 'openssl') +license=('MIT') +arch=('any') +source=(https://github.com/diafygi/acme-tiny/archive/${pkgver}.tar.gz) +sha256sums=('53fa7f0782324c2451efde0220e599789289ce9e14c778d1c32da27c3ddc9283') + +package() { + cd "$srcdir" + + install -m 0755 -d "$pkgdir/usr/bin/" + install -m 0755 "$script_name" "$pkgdir/usr/bin/acme-tiny" +} +
