void-packages/srcpkgs/gopass/template
Noel Cower ff63192641 gopass: fix checksum
Bump revision because the source is different for the same version.

Tweak short_desc for xlint.
2019-01-19 04:31:09 -02:00

40 lines
1.2 KiB
Bash

# Template file for 'gopass'
pkgname=gopass
version=1.8.4
revision=2
build_style=go
go_import_path=github.com/gopasspw/gopass
makedepends="gnupg2"
depends="gnupg2 git"
short_desc="Slightly more awesome standard unix password manager for teams"
maintainer="Dominic Monroe <monroef4@googlemail.com>"
license="MIT"
homepage="https://www.justwatch.com/gopass/"
changelog="https://raw.githubusercontent.com/justwatchcom/gopass/master/CHANGELOG.md"
distfiles="https://github.com/gopasspw/gopass/archive/v${version}.tar.gz"
checksum=314b317c49ee7f8c59758ab82cf5f6942ce9179c97e53f0f952741dbd0e5471a
if [ "$CROSS_BUILD" ]; then
# Depend on system gopass to generate completions
hostmakedepends="gopass"
fi
post_build() {
local GOPASS=${GOPATH}/bin/gopass
local completions=(zsh bash fish)
if [ "$CROSS_BUILD" ]; then
GOPASS=/usr/bin/gopass
fi
for completion in "${completions[@]}"; do
$GOPASS completion $completion > ${completion}.completion;
done
}
post_install() {
install -Dm0755 zsh.completion ${DESTDIR}/usr/share/zsh/site-functions/_gopass
install -Dm0755 bash.completion ${DESTDIR}/usr/share/bash-completion/completions/gopass
install -Dm0755 fish.completion ${DESTDIR}/usr/share/fish/vendor_completions.d/gopass.fish
vlicense LICENSE
}