summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 4c7a32f2dae01d01bd2dfe3d048f64a43ad515d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Maintainer: Mikael Eriksson <mikael_eriksson@miffe.org>

pkgname=acmetool
pkgver=0.0.56
pkgrel=1
pkgdesc="Acmetool is an easy-to-use command line tool for automatically acquiring certificates from ACME servers (such as Let's Encrypt)"
arch=(i686 x86_64 armv7h)
url="https://github.com/hlandau/acme"
license=('MIT')
depends=()
makedepends=(go)

build() {
	GOPATH="$srcdir" go get -v -x github.com/hlandau/acme/cmd/acmetool
}

package() {
	install -Dm755 "$srcdir/bin/acmetool" "$pkgdir/usr/bin/acmetool"
}