diff --git a/srcpkgs/pv-migrate/template b/srcpkgs/pv-migrate/template index 09a8ce63764..3b0c44a29a5 100644 --- a/srcpkgs/pv-migrate/template +++ b/srcpkgs/pv-migrate/template @@ -14,9 +14,17 @@ 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() { 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 }