pv-migrate: update build process #42

Open
luca wants to merge 1 commits from custom-pv-migrate into master
1 changed files with 13 additions and 5 deletions

View File

@ -2,11 +2,10 @@
pkgname=pv-migrate
version=2.0.1 # renovate utkuozdemir/pv-migrate
revision=2
archs="x86_64* i686"
build_style=go
go_import_path="github.com/utkuozdemir/pv-migrate"
go_package="./cmd/pv-migrate"
hostmakedepends="go"
go_ldflags="-X ${go_import_path}/cmd.version=${version}"
short_desc="CLI tool to easily migrate Kubernetes persistent volumes"
maintainer="Luca Bilke <luca@bil.ke>"
license="Apache-2.0"
@ -14,9 +13,18 @@ homepage="https://github.com/utkuozdemir/pv-migrate"
distfiles="https://github.com/utkuozdemir/pv-migrate/archive/v${version}.tar.gz"
checksum=37cfb0b7bfa581b32047fe6dbc9b834b4323629a5c946060dc897fe9bcef8e7c
post_install() {
# fix: collect2: fatal error: cannot find 'ld'
export LDFLAGS="-fuse-ld=bfd"
post_build() {
ls -lAH _build-pv-migrate-xbps
for shell in bash zsh fish; do
${PKGDESTDIR}/usr/bin/${pkgname} completion "$shell" >"${pkgname}.$shell"
vcompletion "${pkgname}.$shell" "$shell"
go run main.go completion $shell completion.$shell
done
}
post_install() {
for shell in bash zsh fish; do
vcompletion completion.$shell $shell
done
}