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-02-21 14:34:03 +01:00
|
|
|
go get -d "${go_import_path}"
|
2015-02-21 13:52:10 +01:00
|
|
|
go build -x "${go_import_path}"
|
2015-02-21 13:38:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
do_install() {
|
|
|
|
vbin ${pkgname}
|
|
|
|
}
|