mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-03 06:04:53 +00:00
746fa696a1
MFH: 2024Q2
29 lines
574 B
Makefile
29 lines
574 B
Makefile
PORTNAME= age
|
|
DISTVERSIONPREFIX= v
|
|
DISTVERSION= 1.1.1
|
|
PORTREVISION= 14
|
|
CATEGORIES= security
|
|
|
|
MAINTAINER= dmgk@FreeBSD.org
|
|
COMMENT= Simple, modern and secure file encryption tool
|
|
WWW= https://github.com/FiloSottile/age
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
USES= go:modules
|
|
|
|
GO_MODULE= filippo.io/age
|
|
GO_TARGET= ./cmd/age \
|
|
./cmd/age-keygen
|
|
|
|
PLIST_FILES= bin/age \
|
|
bin/age-keygen \
|
|
share/man/man1/age-keygen.1.gz \
|
|
share/man/man1/age.1.gz
|
|
|
|
post-install:
|
|
${INSTALL_MAN} ${WRKSRC}/doc/*.1 ${STAGEDIR}${PREFIX}/share/man/man1/
|
|
|
|
.include <bsd.port.mk>
|