build-style/go: support building multiple packages
This commit is contained in:
parent
c40889b652
commit
3b617119c7
3 changed files with 7 additions and 8 deletions
|
@ -10,13 +10,11 @@ do_build() {
|
|||
fi
|
||||
|
||||
go_package=${go_package:-$go_import_path}
|
||||
cd "${GOPATH}/src/${go_package}"
|
||||
go get -d "${go_package}"
|
||||
go build -x "${go_package}"
|
||||
go get -x ${go_package}
|
||||
}
|
||||
|
||||
do_install() {
|
||||
go_package=${go_package:-$go_import_path}
|
||||
cd "${GOPATH}/src/${go_package}"
|
||||
vbin ${pkgname}
|
||||
for f in "${GOBIN}"/*; do
|
||||
vbin "$f"
|
||||
done
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue