25 lines
664 B
Bash
25 lines
664 B
Bash
# Template file for 'git-secret'
|
|
pkgname=git-secret
|
|
version=0.4.0
|
|
revision=2
|
|
build_style=gnu-makefile
|
|
make_install_args="PREFIX=/usr"
|
|
make_check_target=test
|
|
depends="bash gawk gnupg coreutils git"
|
|
checkdepends="gnupg procps-ng git"
|
|
short_desc="Bash-tool to store your private data inside a git repository"
|
|
maintainer="shizonic <realtiaz@gmail.com>"
|
|
license="MIT"
|
|
homepage="http://git-secret.io/"
|
|
distfiles="https://github.com/sobolevn/git-secret/archive/v${version}.tar.gz"
|
|
checksum=ae17bfda88eb77e8f07c5f16d833792a3a14adc9c5d2bbc840f28538c62f08ba
|
|
|
|
do_install() {
|
|
vbin git-secret
|
|
vdoc README.md
|
|
for f in man/*/*.{1,7}; do
|
|
vman $f
|
|
done
|
|
vlicense LICENSE.md
|
|
}
|