diff options
author | Leo Unglaub <leo@unglaub.at> | 2017-08-08 19:47:39 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2017-08-08 19:49:41 +0000 |
commit | 8330027fc5501df4ebc5bf7e14c46c6c05e9c4db (patch) | |
tree | fb7343697cbde317d078f86d341d0fcd7099ae0b /testing/getssl | |
parent | 9efd6940e9003328ec81bdb39bef7f46745e96dd (diff) | |
download | aports-8330027fc5501df4ebc5bf7e14c46c6c05e9c4db.tar.bz2 aports-8330027fc5501df4ebc5bf7e14c46c6c05e9c4db.tar.xz |
testing/getssl: new aport
A pure shell implementation of the LetsEncrypt ACME protocol.
https://github.com/srvrco/getssl
Diffstat (limited to 'testing/getssl')
-rw-r--r-- | testing/getssl/APKBUILD | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/testing/getssl/APKBUILD b/testing/getssl/APKBUILD new file mode 100644 index 0000000000..aa3827fd80 --- /dev/null +++ b/testing/getssl/APKBUILD @@ -0,0 +1,16 @@ +# Maintainer: Leo Unglaub <leo@unglaub.at> +pkgname=getssl +pkgver=2.10 +pkgrel=0 +pkgdesc="A pure shell implementation of the LetsEncrypt ACME protocol." +url="https://github.com/srvrco/getssl" +arch="noarch" +license="GPL-3.0" +depends="curl" +source="$pkgname-$pkgver.tar.gz::https://github.com/srvrco/$pkgname/archive/v$pkgver.tar.gz" + +package () { + cd "$srcdir/getssl-$pkgver" + make DESTDIR="$pkgdir" install +} +sha512sums="47cabf5b1aefd8095548c692cbd9b982e53541f72d932acded2cd0ff2e7b780eb765e45ac0e86be9024e78293e76d5731e705eef7b7f18999c6477c130225e0a getssl-2.10.tar.gz" |