From 3105f51a0f3482228c39a8cc49c27a2a4d7567d8 Mon Sep 17 00:00:00 2001 From: Matthias Neugebauer Date: Thu, 21 Mar 2019 17:55:24 +0100 Subject: testing/go-bindata-assetfs: move to community --- community/go-bindata-assetfs/APKBUILD | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 community/go-bindata-assetfs/APKBUILD (limited to 'community/go-bindata-assetfs') diff --git a/community/go-bindata-assetfs/APKBUILD b/community/go-bindata-assetfs/APKBUILD new file mode 100644 index 0000000000..8de2202a21 --- /dev/null +++ b/community/go-bindata-assetfs/APKBUILD @@ -0,0 +1,33 @@ +# Contributor: Matthias Neugebauer +# Maintainer: Matthias Neugebauer +pkgname=go-bindata-assetfs +pkgver=1.0.0 +pkgrel=0 +pkgdesc="A small utility which generates Go code to serve any file with net/http" +url="https://github.com/elazarl/go-bindata-assetfs" +arch="all" +license="BSD-2-Clause" +depends="go-bindata" +makedepends="go" +options="!check" # no test suite +source="$pkgname-$pkgver.tar.gz::https://github.com/elazarl/$pkgname/archive/v$pkgver.tar.gz" +builddir="$srcdir/src/github.com/elazarl/$pkgname" + +prepare() { + default_prepare + mkdir -p "$srcdir/src/github.com/elazarl" + mv "$srcdir"/$pkgname-$pkgver "$builddir"/ +} + +build() { + cd "$builddir" + + GOPATH="$srcdir" CGO_ENABLED=0 go build -v -o bin/$pkgname ./go-bindata-assetfs +} + +package() { + install -Dm 755 "$builddir/bin/$pkgname" \ + "$pkgdir/usr/bin/$pkgname" +} + +sha512sums="009111511b10b14e83b166eaf37c36e6fc96097770cd6b1865d034f4e90cc3232930b6f5591ee1a960af46d76a7456a96dcc2ccc112234cb0d382a9f9cc575c2 go-bindata-assetfs-1.0.0.tar.gz" -- cgit v1.2.3