mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-13 07:34:50 +00:00
fd5bb6d872
git-secret is a tool which stores private data inside a git repo. General information: git-secret encrypts tracked files with public keys for users whom you trust using gpg, allowing permitted users to access encrypted data using their secret keys. PR: 235056 Submitted by: joshr-freebsd@joshr.com
34 lines
827 B
Makefile
34 lines
827 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= git-secret
|
|
DISTVERSION= 0.2.5
|
|
CATEGORIES= security
|
|
|
|
MAINTAINER= mail@sobolevn.me
|
|
COMMENT= Bash tool to store your private data inside a git repository
|
|
|
|
LICENSE= MIT
|
|
#MASTER_SITES= https://github.com/sobolevn/git-secret/archive/
|
|
|
|
RUN_DEPENDS= bash:shells/bash gawk:lang/gawk git:devel/git gpg2:security/gnupg
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= sobolevn
|
|
GH_PROJECT= git-secret
|
|
GH_TAGNAME= 94d5ae4
|
|
|
|
NO_ARCH= yes
|
|
|
|
SCRIPTS= git-secret
|
|
ALL_TARGET= git-secret
|
|
|
|
post-extract:
|
|
@cd ${WRKSRC} && ${CAT} src/version.sh src/_utils/*.sh src/commands/*.sh src/main.sh > git-secret
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/git-secret ${STAGEDIR}${PREFIX}/bin/
|
|
${INSTALL_MAN} ${WRKSRC}/man/man1/*.1 ${STAGEDIR}${PREFIX}/man/man1/
|
|
${INSTALL_MAN} ${WRKSRC}/man/man7/*.7 ${STAGEDIR}${PREFIX}/man/man7/
|
|
|
|
.include <bsd.port.mk>
|