Files

34 lines
638 B
Makefile
Raw Permalink Normal View History

COMMENT = simple, modern and secure file encryption tool
2020-10-22 12:07:42 +00:00
MODGO_MODNAME = filippo.io/age
2026-01-08 18:37:00 +00:00
MODGO_VERSION = v1.3.1
2020-10-22 12:07:42 +00:00
DISTNAME = age-${MODGO_VERSION}
CATEGORIES = security
HOMEPAGE = https://age-encryption.org/
MAINTAINER = Volker Schlecht <openbsd-ports@schlecht.dev>
# BSD3
PERMIT_PACKAGE = Yes
WANTLIB += c pthread
MODULES = lang/go
MODGO_LDFLAGS = -X main.Version=${MODGO_VERSION}
2021-03-10 23:31:00 +00:00
2021-08-10 02:47:36 +00:00
pre-install:
${INSTALL_MAN} ${WRKDIR}/${MODGO_MODNAME}/doc/*.1 \
2024-06-20 19:01:58 +00:00
${PREFIX}/man/man1
# c2sp.org/!c!c!t!v/age contains some read-only files and directories
post-test:
chmod -R u+w ${MODGO_WORKSPACE}
2021-08-10 02:47:36 +00:00
.include "modules.inc"
2021-01-16 17:37:04 +00:00
.include <bsd.port.mk>