diff --git a/security/Makefile b/security/Makefile index c731c8511d27..f4493c58991b 100644 --- a/security/Makefile +++ b/security/Makefile @@ -216,6 +216,7 @@ SUBDIR += hmap SUBDIR += hockeypuck SUBDIR += honggfuzz + SUBDIR += horcrux SUBDIR += hotssh SUBDIR += hpenc SUBDIR += hydra diff --git a/security/horcrux/Makefile b/security/horcrux/Makefile new file mode 100644 index 000000000000..1fd2934054da --- /dev/null +++ b/security/horcrux/Makefile @@ -0,0 +1,29 @@ +# $FreeBSD$ + +PORTNAME= horcrux +DISTVERSIONPREFIX= v +DISTVERSION= 0.2 +CATEGORIES= security + +MAINTAINER= vulcan@wired.sh +COMMENT= Split files into encrypted fragments + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +USES= go + +USE_GITHUB= yes +GH_ACCOUNT= jesseduffield +GH_SUBDIR= src/github.com/${GH_ACCOUNT}/${PORTNAME} + +PLIST_FILES= bin/${PORTNAME} +PORTDOCS= README.md + +OPTIONS_DEFINE= DOCS + +post-install-DOCS-on: + @${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/${PORTDOCS} ${STAGEDIR}${DOCSDIR} + +.include diff --git a/security/horcrux/distinfo b/security/horcrux/distinfo new file mode 100644 index 000000000000..ea5208b64530 --- /dev/null +++ b/security/horcrux/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1579338317 +SHA256 (jesseduffield-horcrux-v0.2_GH0.tar.gz) = eb2e4edab1938de6b724cf5ba5c8f28acd5b5da65065a4060a34672af5e1bafa +SIZE (jesseduffield-horcrux-v0.2_GH0.tar.gz) = 13559 diff --git a/security/horcrux/pkg-descr b/security/horcrux/pkg-descr new file mode 100644 index 000000000000..31c603bcaaa7 --- /dev/null +++ b/security/horcrux/pkg-descr @@ -0,0 +1,5 @@ +Utility to split files into encrypted fragments +(using the shamir secret sharing scheme) so that +you don't need to remember a passcode. + +WWW: https://github.com/jesseduffield/horcrux