20 lines
344 B
Bash
20 lines
344 B
Bash
#
|
|
# This helper is for templates for Go packages.
|
|
#
|
|
|
|
do_build() {
|
|
if [[ "${go_get}" != "yes" ]]; then
|
|
local path="${GOPATH}/src/${go_import_path}"
|
|
mkdir -p "$(dirname ${path})"
|
|
ln -fs $PWD "${path}"
|
|
fi
|
|
|
|
go_package=${go_package:-$go_import_path}
|
|
go get -x ${go_package}
|
|
}
|
|
|
|
do_install() {
|
|
for f in "${GOBIN}"/*; do
|
|
vbin "$f"
|
|
done
|
|
}
|