25 lines
600 B
Bash
25 lines
600 B
Bash
#
|
|
# This helper is for templates for Go packages.
|
|
#
|
|
|
|
do_configure() {
|
|
# This isn't really configuration, but its needed by packages
|
|
# that do unusual things with the build where the expect to be
|
|
# able to cd into the $GOSRCPATH
|
|
if [[ "${go_get}" != "yes" ]]; then
|
|
mkdir -p "$(dirname ${GOSRCPATH})"
|
|
ln -fs $PWD "${GOSRCPATH}"
|
|
fi
|
|
}
|
|
|
|
do_build() {
|
|
go_package=${go_package:-$go_import_path}
|
|
go get -x -tags "${go_build_tags}" -ldflags "${go_ldflags}" ${go_package}
|
|
}
|
|
|
|
do_install() {
|
|
find "${GOPATH}/bin" -type f -executable | while read line
|
|
do
|
|
vbin "${line}"
|
|
done
|
|
}
|