mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 21:37:15 +02:00
testing/go-gdm: new aport
This commit is contained in:
parent
69c098affe
commit
2341d634ea
46
testing/go-gdm/APKBUILD
Normal file
46
testing/go-gdm/APKBUILD
Normal file
@ -0,0 +1,46 @@
|
||||
# Contributor: Stefan Wagner <stw@bit-strickerei.de>
|
||||
# Maintainer: Stefan Wagner <stw@bit-strickerei.de>
|
||||
pkgname=go-gdm
|
||||
_pkgname=gdm
|
||||
pkgver=1.4
|
||||
pkgrel=0
|
||||
pkgdesc="Minimalist dependency manager for Go written in Go."
|
||||
url="https://github.com/sparrc/gdm"
|
||||
arch="all"
|
||||
license="Unlicense"
|
||||
depends="go"
|
||||
makedepends="godep"
|
||||
install=""
|
||||
subpackages=""
|
||||
source="$_pkgname-$pkgver.tar.gz::https://github.com/sparrc/$_pkgname/archive/$pkgver.tar.gz
|
||||
Godeps.json
|
||||
"
|
||||
builddir="$srcdir/go/src/github.com/sparrc/$_pkgname"
|
||||
options="!check" # has not tests
|
||||
|
||||
prepare() {
|
||||
mkdir -p "$srcdir/go/src/github.com/sparrc"
|
||||
mv "$srcdir/$_pkgname-$pkgver" "$builddir"
|
||||
rm "$builddir/Godeps"
|
||||
mkdir -p "$builddir/Godeps"
|
||||
mv "$srcdir/Godeps.json" "$builddir/Godeps/Godeps.json"
|
||||
export GOPATH="$srcdir/go"
|
||||
cd "$builddir"
|
||||
godep get
|
||||
|
||||
default_prepare
|
||||
}
|
||||
|
||||
build() {
|
||||
export GOPATH="$srcdir/go"
|
||||
cd "$builddir"
|
||||
go build -v -o gdm -ldflags "-X main.version=$pkgver" || return 1
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "$builddir"
|
||||
install -sD -m 755 gdm "$pkgdir"/usr/bin/gdm
|
||||
}
|
||||
|
||||
sha512sums="43d533536a44e742bfe7921e1e2f383f6ab016cd8beac6a426634737f8ccee0a7a35da888340994fa4e3023c12507c014d7713cb37cec054b30ce95495ebfc8a gdm-1.4.tar.gz
|
||||
362add994473d3907703012ffbb863ddc6a6f61ff69486d834c60ec368a101f470bb2569f39c47df6e0b3f40b0d4f76d421e1854054c38d976f8ecb4a2c3299a Godeps.json"
|
11
testing/go-gdm/Godeps.json
Normal file
11
testing/go-gdm/Godeps.json
Normal file
@ -0,0 +1,11 @@
|
||||
{
|
||||
"ImportPath": "github.com/sparrc/gdm/gdm-1.4",
|
||||
"GoVersion": "go1.9",
|
||||
"GodepVersion": "v75",
|
||||
"Deps": [
|
||||
{
|
||||
"ImportPath": "golang.org/x/tools/go/vcs",
|
||||
"Rev": "6f233b96dfbc53e33b302e31b88814cf74697ff6"
|
||||
}
|
||||
]
|
||||
}
|
Loading…
Reference in New Issue
Block a user