mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-24 00:45:52 +00:00
a5c7f2939c
Approved by: tcberner (mentor) Differential Revision: https://reviews.freebsd.org/D28279
30 lines
532 B
Makefile
30 lines
532 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= horcrux
|
|
DISTVERSIONPREFIX= v
|
|
DISTVERSION= 0.2
|
|
CATEGORIES= security
|
|
|
|
MAINTAINER= lcook@FreeBSD.org
|
|
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 <bsd.port.mk>
|