From c7d7a728310bb24da0dd65417d217487d4a53972 Mon Sep 17 00:00:00 2001 From: Carlo Landmeter Date: Tue, 20 Dec 2016 14:50:49 +0100 Subject: community/govendor: moved from testing and add verbose switch govender sync didnt have a verbose switch which made abuild process confusingly slow. --- community/govendor/APKBUILD | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 community/govendor/APKBUILD (limited to 'community/govendor/APKBUILD') diff --git a/community/govendor/APKBUILD b/community/govendor/APKBUILD new file mode 100644 index 0000000000..3e4bbb8920 --- /dev/null +++ b/community/govendor/APKBUILD @@ -0,0 +1,40 @@ +# Contributor: Carlo Landmeter +# Maintainer: Carlo Landmeter +pkgname=govendor +pkgver=1.0.8 +pkgrel=1 +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 + verbose.patch" +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 -v +} + +package() { + install -Dm755 "$builddir"/govendor "$pkgdir"/usr/bin/govendor +} + +md5sums="a1803965b7f39f1ece9347c1c5cdb333 govendor-1.0.8.tar.gz +fc62e68115623ac50e6cff60ca73d5f2 verbose.patch" +sha256sums="7e887b84c7a9278473f39ae8a74440ffc17b329aa193e9304d170d458f8785c7 govendor-1.0.8.tar.gz +dc03d870fd2d61d98c2bdb1959c84bea6e1b589836218fd41a82b6a381e9e519 verbose.patch" +sha512sums="ef9fd65507bef66a4b00ef77a288a2f0e8bf77c58dac1b90846705ac63b3fb6fad76adc88b95f36612d0cb3b27f75fa2e6554054456d8ef0bbb00726258ced3a govendor-1.0.8.tar.gz +a0507c6fbdeed60ecc1f53579ff0d150392dadb9af6e6a968ced6b5bac41c42a39d7f805f935e5bdfa83df82f475a9b1dc4db22adc93406cd7bc942de09032bc verbose.patch" -- cgit v1.2.3