blob: d69b117550b8981dd3d5c044174ee5fa6ed66cd9 (
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.7.3
pkgrel=0
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="bfe6c4f7f371aaabdbeb01d1ed1a06cf21b7ec337c1c746227fe109138a9249a3a15de1ab00f7a0fcc8f20147b559b5b9bc87b79d135a4ddd8842d5470b318e3 envconsul-0.7.3.tar.gz"
|