diff options
author | Leo <thinkabit.ukim@gmail.com> | 2019-06-18 14:27:17 -0300 |
---|---|---|
committer | Leo <thinkabit.ukim@gmail.com> | 2019-06-18 16:06:13 -0300 |
commit | 776777e677189836e05603a22198251e6d37f3c7 (patch) | |
tree | 1551ca4be713d0365e3c4d4968d3b5c6158f6c7b /community/letsencrypt-nosudo | |
parent | d3e77afb4fde4ce222ca4d4aef97b85c9ccbea53 (diff) | |
download | aports-776777e677189836e05603a22198251e6d37f3c7.tar.bz2 aports-776777e677189836e05603a22198251e6d37f3c7.tar.xz |
community/letsencrypt-nosudo: modernize, fix license, use openssl
Diffstat (limited to 'community/letsencrypt-nosudo')
-rw-r--r-- | community/letsencrypt-nosudo/APKBUILD | 22 |
1 files changed, 6 insertions, 16 deletions
diff --git a/community/letsencrypt-nosudo/APKBUILD b/community/letsencrypt-nosudo/APKBUILD index 1f51e8d7ab..2f144e42d7 100644 --- a/community/letsencrypt-nosudo/APKBUILD +++ b/community/letsencrypt-nosudo/APKBUILD @@ -1,32 +1,22 @@ # Contributor: Stuart Cardall <developer@it-offshore.co.uk> # Maintainer: Stuart Cardall <developer@it-offshore.co.uk> -pkgname="letsencrypt-nosudo" -pkgver="0.0.1" -pkgrel=1 +pkgname=letsencrypt-nosudo +pkgver=0.0.1 +pkgrel=0 pkgdesc="Free HTTPS certificates without having to trust the letsencrypt cli with sudo/root" +options="!check" # No testsuite url="https://github.com/diafygi/letsencrypt-nosudo" arch="noarch" -license="GPL-3.0" -depends="python2 libressl" -depends_dev="" -makedepends="$depends_dev" +license="AGPL-3.0-only" +depends="python2 openssl" subpackages="${pkgname}-doc" source="${pkgname}-${pkgver}.tar.gz::https://github.com/itoffshore/${pkgname}/archive/${pkgver}.tar.gz" -builddir="${srcdir}/${pkgname}-${pkgver}" - -build() { - return 0 -} - package() { - cd "$builddir" mkdir -p "${pkgdir}/usr/bin" mkdir -p "${pkgdir}/usr/share/doc/${pkgname}" install -Dm755 *.py "${pkgdir}/usr/bin/" install -Dm644 README.md "${pkgdir}/usr/share/doc/${pkgname}/" } -md5sums="c95fde63fe3d357ebf54ace79b412d2c letsencrypt-nosudo-0.0.1.tar.gz" -sha256sums="19f8a5b316c06afd258b101eaad7e28dd2ddf1b1809d5559c683f7412247c690 letsencrypt-nosudo-0.0.1.tar.gz" sha512sums="1d496a2dc74892f2f359562961547aad71c940fc372e2895d618cdf2a7b44b116ae039608e3589de74658ec9140ffbe1fcb51728805d215a4a6aa0c053c21672 letsencrypt-nosudo-0.0.1.tar.gz" |