blob: 15e9955403753ccc59b219da0c42e3df14ebe752 (
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
42
43
44
|
# Maintainer: Dave Henderson <dhenderson@gmail.com>
pkgname=gomplate
_goname="github.com/hairyhenderson/$pkgname"
pkgver=2.8.0
pkgrel=0
pkgdesc="A versatile Go template processor"
url="https://github.com/hairyhenderson/gomplate"
arch="all"
license="MIT"
depends="ca-certificates"
makedepends="go"
source="$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz"
builddir="$srcdir/src/$_goname"
prepare() {
mkdir -p "${builddir%/*}"
mv "$srcdir"/$pkgname-$pkgver "$builddir"/ || return 1
default_prepare
}
build() {
cd "$builddir"
make build \
GOPATH="$srcdir" \
VERSION="$pkgver" \
COMMIT="unknown"
}
check() {
cd "$builddir"
# Note: make test (that runs go test -race) doesn't work.
GOPATH="$srcdir" go test -v || return 1
./bin/gomplate --help >/dev/null
}
package() {
cd "$builddir"
install -D -m 755 bin/gomplate "$pkgdir"/usr/bin/gomplate || return 1
}
sha512sums="84439233aa4b84cf1e7337a6a56fc2f8d38d6bb02423d6c045dc49020391cc69aaebfac26a3f2d1afbd7a1bd579285a14f8469f8cc29c20bca46ea1984e78ce0 gomplate-2.8.0.tar.gz"
|