aboutsummaryrefslogtreecommitdiffstats
path: root/testing/envconsul/APKBUILD
blob: 5e92c5692ad8ced8ddb88121bc36b325887dd172 (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
# Contributor: Gennady Feldman <gena01@gmail.com>
# Maintainer: Francesco Colista <fcolista@alpinelinux.org>
pkgname=envconsul
pkgver=0.8.0
pkgrel=1
pkgdesc="Read and set environmental variables for processes from Consul."
url="https://www.consul.io/"
arch="all"
license="MPL-2.0"
depends=""
makedepends="go"
source="$pkgname-$pkgver.tar.gz::https://github.com/hashicorp/$pkgname/archive/v$pkgver.tar.gz"
builddir="$srcdir/$pkgname-$pkgver"

build() {
	cd "$builddir"

	mkdir -p "$builddir/src/github.com/hashicorp"
	ln -s "$builddir" "$builddir/src/github.com/hashicorp/$pkgname"
	cd "$builddir/src/github.com/hashicorp/$pkgname" || return 1

	GOPATH="$builddir" go build -v -o bin/$pkgname
}

package() {
	cd "$builddir"

	# Main binary
	install -m755 -D bin/$pkgname "$pkgdir"/usr/bin/$pkgname
}

sha512sums="eacaa8ca0ae524f0f1abc178cc51db111220fe28f87717ff584d31b09daebbfd968565403b3d51ba2ebbb6b20fb7ffdceeb288521f8ef88e681c36b4d4884c96  envconsul-0.8.0.tar.gz"