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