New build_style: go

This commit is contained in:
Dominik Honnef 2015-02-21 13:38:37 +01:00
parent 632a3e8e91
commit 77e8751a93
5 changed files with 66 additions and 38 deletions

31
common/build-style/go.sh Normal file
View file

@ -0,0 +1,31 @@
#
# This helper is for templates for Go packages.
#
do_build() {
case "$XBPS_TARGET_MACHINE" in
armv6*) export GOARCH=arm; export GOARM=6;;
armv7*) export GOARCH=arm; export GOARM=7;;
i686*) export GOARCH=386;;
x86_64*) export GOARCH=amd64;;
esac
export GOPATH="/tmp/gopath"
if [[ "${go_get}" != "yes" ]]; then
local path="${GOPATH}/src/${import_path}"
mkdir -p "$(dirname ${path})"
ln -fs $PWD "${path}"
fi
go get -d -v "${import_path}"
go build -x "${import_path}"
}
do_install() {
vbin ${pkgname}
}
do_clean() {
rm -rf /tmp/gopath
}