28 lines
523 B
Makefile
28 lines
523 B
Makefile
# $OpenBSD: Makefile,v 1.4 2016/12/29 14:39:28 ajacoutot Exp $
|
|
|
|
COMMENT= secure secret storage
|
|
|
|
GH_TAGNAME= v0.6.4
|
|
GH_ACCOUNT= hashicorp
|
|
GH_PROJECT= vault
|
|
|
|
CATEGORIES= security net
|
|
|
|
HOMEPAGE= https://www.vaultproject.io/
|
|
|
|
MAINTAINER= Antoine Jacoutot <ajacoutot@openbsd.org>
|
|
|
|
# MPLv2
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
|
|
WANTLIB += c pthread
|
|
|
|
MODULES= lang/go
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/vault
|
|
${INSTALL_DATA} ${FILESDIR}/vault.hcl \
|
|
${PREFIX}/share/examples/vault
|
|
|
|
.include <bsd.port.mk>
|