1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-13 07:34:50 +00:00
freebsd-ports/security/git-secret/Makefile
Larry Rosenman fd5bb6d872 security/git-secret: New Port.
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
2019-01-19 03:01:19 +00:00

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>