freebsd-ports/security/enchive/Makefile
Jose Alonso Cardenas Marquez da412c8221 - New port: security/enchive
Enchive is a tool to encrypt files to yourself for long-term archival. It's a
focused, simple alternative to more complex solutions such as GnuPG or
encrypted filesystems. Enchive has no external dependencies and is trivial to
build for local use. Portability is emphasized over performance.

WWW: https://github.com/skeeto/enchive
2017-03-18 05:32:28 +00:00

29 lines
696 B
Makefile

# $FreeBSD$
PORTNAME= enchive
PORTVERSION= 3.1
CATEGORIES= security
MASTER_SITES= https://github.com/skeeto/enchive/archive/
DISTFILES= ${PORTVERSION}.tar.gz
MAINTAINER= acm@FreeBSD.org
COMMENT= Tool to encrypt files to yourself for long-term archival
LICENSE= PD
LICENSE_FILE= ${WRKSRC}/UNLICENSE
USES= gmake
ALL_TARGET= ${PORTNAME}
PLIST_FILES= bin/${PORTNAME} \
%%DATADIR%%/UNLICENSE
post-patch:
@${REINPLACE_CMD} -e 's|^CC|CC?|g' -e 's|^CFLAGS|CFLAGS?|g' ${WRKSRC}/Makefile
do-install:
@${MKDIR} ${STAGEDIR}/${DATADIR}
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
${INSTALL_DATA} ${WRKSRC}/UNLICENSE ${STAGEDIR}/${DATADIR}/UNLICENSE
.include <bsd.port.mk>