Files
ports/sysutils/b3sum/Makefile
T
Daniel Engberg 364ebacddd sysutils/b3sum: Update to 1.5.5 and return to pool
Changelog: https://github.com/BLAKE3-team/BLAKE3/releases/tag/1.5.5

Return to pool as maintainer hasn't responded to last three PRs

PR:		283053
Approved by:	portmgr (maintainer timeout, 2+ weeks)
2024-12-15 22:38:29 +01:00

36 lines
677 B
Makefile

PORTNAME= b3sum
DISTVERSION= 1.5.5
CATEGORIES= sysutils
MAINTAINER= ports@FreeBSD.org
COMMENT= Command line implementation of the BLAKE3 hash function
WWW= https://github.com/BLAKE3-team/BLAKE3
LICENSE= APACHE20
LICENSE_FILE= ${WRKSRC}/LICENSE_A2
USES= cargo
USE_GITHUB= yes
GH_ACCOUNT= BLAKE3-team
GH_PROJECT= BLAKE3
OPTIONS_DEFINE= DOCS
OPTIONS_DEFAULT= DOCS
WRKSRC_SUBDIR= ${PORTNAME}
PORTDOCS= *.md
PLIST_FILES= bin/${PORTNAME}
.include <bsd.port.options.mk>
.if ${ARCH} == aarch64
CARGO_FEATURES= neon
.endif
post-install-DOCS-on:
@${MKDIR} ${STAGEDIR}${DOCSDIR}
(cd ${WRKSRC}/.. && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR})
.include <bsd.port.mk>