aboutsummaryrefslogtreecommitdiffstats
path: root/community/consul-template/APKBUILD
blob: 782a3d3380e70dc41c4af6ff3a375813f6ae5acd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# Contributor: Gennady Feldman <gena01@gmail.com>
# Maintainer: Francesco Colista <fcolista@alpinelinux.org>
pkgname=consul-template
pkgver=0.27.0
pkgrel=1
pkgdesc="Generic template rendering and notifications with Consul"
url="https://www.consul.io/"
arch="all"
license="MPL-2.0"
makedepends="go"
options="!check"
subpackages="$pkgname-openrc"
source="$pkgname-$pkgver.tar.gz::https://github.com/hashicorp/consul-template/archive/v$pkgver.tar.gz
	consul-template.hcl
	consul-template.initd
	"

build() {
	CGO_ENABLED="0" go build -a -v -o bin/$pkgname \
		-ldflags "-s -w
			-X github.com/hashicorp/$pkgname/version.Name=$pkgname \
			-X github.com/hashicorp/$pkgname/version.GitCommit=$pkgver"
}

package() {
	# Main binary
	install -m750 -D bin/$pkgname "$pkgdir"/usr/sbin/$pkgname
	install -Dm644 "$srcdir"/consul-template.hcl "$pkgdir"/etc/"$pkgname"/"$pkgname".hcl
	install -Dm755 "$srcdir"/consul-template.initd "$pkgdir"/etc/init.d/"$pkgname"
}

cleanup_srcdir() {
	[ -d src ] && chmod -R +w src
	default_cleanup_srcdir
}

sha512sums="
2f16c6c30df79db660a09b069cab5776fa612a22676adbae0ac769865496fb5a16154c2450c52c6269c2e30dab0b02140c699253329cd7bb4cdffa8b763828bd  consul-template-0.27.0.tar.gz
bfb5c7eed53cfe45d9e03eeb68eb454d2f47a47402a99b008895c261389160d611ab72903cdfb98e99a88749e0fd00733a9fad70b9def9af35657cba12987ea9  consul-template.hcl
15a5edc20c3239743c58ca485dc51e2851a072b9b2424980854aa4842ac423d65041584a6572c81eab328ed68a41094b7a6771dd94c33155db741b27259f5ff6  consul-template.initd
"