mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-06 05:47:13 +02:00
testing/go-bindata: new aport
This commit is contained in:
parent
7d085611f3
commit
c98de8bf17
41
testing/go-bindata/APKBUILD
Normal file
41
testing/go-bindata/APKBUILD
Normal file
@ -0,0 +1,41 @@
|
||||
# Contributor: Carlo Landmeter <clandmeter@gmail.com>
|
||||
# Maintainer:
|
||||
pkgname=go-bindata
|
||||
pkgver=20151023
|
||||
_hash="a0ff2567cfb70903282db057e799fd826784d41d"
|
||||
pkgrel=0
|
||||
pkgdesc="A small utility which generates Go code from any file"
|
||||
url="https://github.com/jteeuwen/go-bindata"
|
||||
arch="all"
|
||||
license="CC0 1.0"
|
||||
depends=""
|
||||
makedepends="go"
|
||||
install=""
|
||||
subpackages=""
|
||||
source="go-bindata-$pkgver.tar.gz::https://github.com/jteeuwen/go-bindata/archive/$_hash.tar.gz
|
||||
go-remove-runtime.patch"
|
||||
builddir="$srcdir/src/github.com/jteeuwen/$pkgname"
|
||||
|
||||
prepare() {
|
||||
mkdir -p ${builddir%/*}
|
||||
mv "$srcdir"/$pkgname-$_hash "$builddir"/ || return 1
|
||||
default_prepare
|
||||
}
|
||||
|
||||
build() {
|
||||
cd "$builddir"/$pkgname
|
||||
export GOPATH="$srcdir"
|
||||
go build -v -o bin/$pkgname
|
||||
}
|
||||
|
||||
package() {
|
||||
install -Dm 755 "$builddir/$pkgname"/bin/go-bindata \
|
||||
"$pkgdir"/usr/bin/go-bindata || return 1
|
||||
}
|
||||
|
||||
md5sums="d630353abae8c73adf2ed2af3d0e74a0 go-bindata-20151023.tar.gz
|
||||
89f3e2b57d42c5b6ff943c7a2c99e6f4 go-remove-runtime.patch"
|
||||
sha256sums="65cf65ac422fb8072abfaabec86c20a74e448a93b489e896a36642e7049f5d32 go-bindata-20151023.tar.gz
|
||||
db1189c655e4602651cd283aeaa10efa118c8d5e343c0e872e896a9b54146174 go-remove-runtime.patch"
|
||||
sha512sums="ed1d2fd1c5a833b6efdc731eb43f72fc072a701c447a926ad6c1f9be3c0f1ed92c689639d02a288230a49d53795f41092deab132389871a5b9f79abdc525fc43 go-bindata-20151023.tar.gz
|
||||
0d8b16b3384048e1c1d168b228c293f86a06a50304e49657545770a445496acbca79670441bb14464a306a1efb94bdb371aabb1e58969b45a40fcfbb1870d9dc go-remove-runtime.patch"
|
17
testing/go-bindata/go-remove-runtime.patch
Normal file
17
testing/go-bindata/go-remove-runtime.patch
Normal file
@ -0,0 +1,17 @@
|
||||
--- ./go-bindata/version.go.orig
|
||||
+++ ./go-bindata/version.go
|
||||
@@ -6,7 +6,6 @@
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
- "runtime"
|
||||
)
|
||||
|
||||
const (
|
||||
@@ -27,5 +26,5 @@
|
||||
}
|
||||
|
||||
return fmt.Sprintf("%s %d.%d.%s (Go runtime %s).\nCopyright (c) 2010-2013, Jim Teeuwen.",
|
||||
- AppName, AppVersionMajor, AppVersionMinor, AppVersionRev, runtime.Version())
|
||||
+ AppName, AppVersionMajor, AppVersionMinor, AppVersionRev, "1.7.0")
|
||||
}
|
Loading…
Reference in New Issue
Block a user