30 lines
873 B
Bash
30 lines
873 B
Bash
# Template file for 'gopass'
|
|
pkgname=gopass
|
|
version=1.15.14
|
|
revision=2
|
|
build_style=go
|
|
go_import_path=github.com/gopasspw/gopass
|
|
go_package="${go_import_path}"
|
|
make_check_target="./tests"
|
|
depends="gnupg>=2 git"
|
|
checkdepends="gnupg git age"
|
|
short_desc="Slightly more awesome standard unix password manager for teams"
|
|
maintainer="Felipe Nogueira <contato.fnog@gmail.com>"
|
|
license="MIT"
|
|
homepage="https://www.gopass.pw/"
|
|
changelog="https://raw.githubusercontent.com/gopasspw/gopass/master/CHANGELOG.md"
|
|
distfiles="https://github.com/gopasspw/gopass/archive/refs/tags/v${version}.tar.gz"
|
|
checksum=47a2a735fc94064c3eb53c400f15c39b543bdb01753537da39403d12dddc03ea
|
|
make_check_pre="GOPASS_BINARY=${GOPATH}/bin/gopass"
|
|
|
|
export GOFLAGS="-buildmode=pie"
|
|
|
|
post_install() {
|
|
vlicense LICENSE
|
|
vman gopass.1
|
|
|
|
for shell in bash fish zsh; do
|
|
vcompletion $shell.completion $shell
|
|
done
|
|
}
|