blob: aa3827fd800fc839798f3b28ca467f171e688be1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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"
|