diff options
Diffstat (limited to 'security/gokey/Makefile')
-rw-r--r-- | security/gokey/Makefile | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/security/gokey/Makefile b/security/gokey/Makefile new file mode 100644 index 000000000000..6ff956ac043d --- /dev/null +++ b/security/gokey/Makefile @@ -0,0 +1,27 @@ +PORTNAME= gokey +DISTVERSIONPREFIX= v +DISTVERSION= 0.1.2 +CATEGORIES= security + +MAINTAINER= 0xdutra@gmail.com +COMMENT= Simple password manager write in Go +WWW= https://github.com/cloudflare/gokey + +LICENSE= BSD3CLAUSE +LICENSE_FILE= ${WRKSRC}/LICENSE + +USES= go:modules +GO_MODULE= github.com/cloudflare/gokey +GO_TARGET= ./cmd/gokey + +PLIST_FILES= bin/${PORTNAME} + +PORTDOCS= README.md + +OPTIONS_DEFINE= DOCS + +do-install-DOCS-on: + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/${PORTDOCS} ${STAGEDIR}${DOCSDIR} + +.include <bsd.port.mk> |