aboutsummaryrefslogtreecommitdiffstats
path: root/testing/govendor/APKBUILD
blob: 1cb56e77fa3852270a10a10126c9a817e94f6be1 (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
# Contributor: Carlo Landmeter <clandmeter@gmail.com>
# Maintainer:
pkgname=govendor
pkgver=1.0.8
pkgrel=0
pkgdesc="Go vendor tool that works with the standard vendor file"
url="https://github.com/kardianos/govendor"
arch="all"
license="BSD"
depends=""
makedepends="go"
install=""
subpackages=""
source="govendor-$pkgver.tar.gz::https://github.com/kardianos/govendor/archive/v$pkgver.tar.gz"
builddir="$srcdir/github.com/kardianos/$pkgname"


prepare() {
        mkdir -p ${builddir%/*}
        mv "$srcdir"/$pkgname-$pkgver "$builddir"/ || return 1
        default_prepare
}

build() {
	cd "$builddir"
	export GOPATH="$startdir"
	go build
}

package() {
	install -Dm755 "$builddir"/govendor "$pkgdir"/usr/bin/govendor
}

md5sums="a1803965b7f39f1ece9347c1c5cdb333  govendor-1.0.8.tar.gz"
sha256sums="7e887b84c7a9278473f39ae8a74440ffc17b329aa193e9304d170d458f8785c7  govendor-1.0.8.tar.gz"
sha512sums="ef9fd65507bef66a4b00ef77a288a2f0e8bf77c58dac1b90846705ac63b3fb6fad76adc88b95f36612d0cb3b27f75fa2e6554054456d8ef0bbb00726258ced3a  govendor-1.0.8.tar.gz"