void-packages/common/build-style/go.sh

22 lines
436 B
Bash
Raw Normal View History

2015-02-21 12:38:37 +00:00
#
# This helper is for templates for Go packages.
#
do_build() {
if [[ "${go_get}" != "yes" ]]; then
2015-02-21 12:52:10 +00:00
local path="${GOPATH}/src/${go_import_path}"
2015-02-21 12:38:37 +00:00
mkdir -p "$(dirname ${path})"
ln -fs $PWD "${path}"
fi
go_package=${go_package:-$go_import_path}
2016-05-02 22:32:48 +00:00
go get -x -tags "${go_build_tags}" -ldflags "${go_ldflags}" ${go_package}
2015-02-21 12:38:37 +00:00
}
do_install() {
find "${GOPATH}/bin" -type f -executable | while read line
do
vbin "${line}"
done
2015-02-21 12:38:37 +00:00
}