mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-06-09 03:24:46 +02:00
33 lines
1.1 KiB
Text
33 lines
1.1 KiB
Text
# Contributor: Matthias Neugebauer <mtneug@mailbox.org>
|
|
# Contributor: omni <omni+alpine@hack.org>
|
|
# Contributor: Dermot Bradley <dermot_bradley@yahoo.com>
|
|
# Maintainer: Celeste <cielesti@protonmail.com>
|
|
maintainer="Celeste <cielesti@protonmail.com>"
|
|
pkgname=go-bindata-assetfs
|
|
pkgver=1.0.1
|
|
pkgrel=33
|
|
pkgdesc="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/go-bindata-assetfs/archive/v$pkgver.tar.gz"
|
|
|
|
export GOFLAGS="$GOFLAGS -trimpath -mod=readonly -modcacherw"
|
|
export GOCACHE="${GOCACHE:-"$srcdir/go-cache"}"
|
|
export GOTMPDIR="${GOTMPDIR:-"$srcdir"}"
|
|
export GOMODCACHE="${GOMODCACHE:-"$srcdir/go"}"
|
|
|
|
build() {
|
|
go build -v -o bin/"$pkgname" ./"$pkgname"/main.go
|
|
}
|
|
|
|
package() {
|
|
install -Dm0755 bin/"$pkgname" -t "$pkgdir"/usr/bin
|
|
}
|
|
|
|
sha512sums="
|
|
fde5cd06393c82a8a1f9da5cc3054c1cc389328b5a232c5595a32755b2d613a83dc7777070152ad31ccbbbfbcf2419ad44bef89f88ceef4c6b7e5df8715309cf go-bindata-assetfs-1.0.1.tar.gz
|
|
"
|