f0b9e4cc8a
re: https://github.com/gchq/CyberChef/releases/tag/v9.24.3 Changelog; SM3 hashing function added along with more configuration options for other hashing operations Various RSA operations added to encrypt, decrypt, sign, verify and generate keys 'Unicode Text Format' operation added. Multiple bug fixes and improvements PR: 253324 Submitted by: thomas@bsdunix.ch
33 lines
773 B
Makefile
33 lines
773 B
Makefile
# Created by: Dan Langille <dvl@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= cyberchef
|
|
PORTVERSION= 9.24.3
|
|
DISTVERSIONPREFIX= v
|
|
CATEGORIES= security
|
|
MASTER_SITES= https://github.com/${GH_ACCOUNT}/${GH_PROJECT}/releases/download/${GH_TAGNAME}/
|
|
DISTNAME= CyberChef_${DISTVERSIONPREFIX}${PORTVERSION}
|
|
|
|
MAINTAINER= dvl@FreeBSD.org
|
|
COMMENT= Cyber operations within a web browser
|
|
|
|
LICENSE= APACHE20
|
|
|
|
USES= zip
|
|
|
|
USE_GITHUB= nodefault
|
|
GH_ACCOUNT= gchq
|
|
GH_PROJECT= CyberChef
|
|
|
|
NO_BUILD= yes
|
|
NO_ARCH= yes
|
|
|
|
do-install:
|
|
${MKDIR} ${STAGEDIR}${WWWDIR}
|
|
${INSTALL} ${WRKDIR}/${DISTNAME}.html ${STAGEDIR}${WWWDIR}/index.html
|
|
${CP} -R ${WRKDIR}/images ${STAGEDIR}${WWWDIR}/
|
|
${CP} -R ${WRKDIR}/modules ${STAGEDIR}${WWWDIR}/
|
|
${CP} -R ${WRKDIR}/assets ${STAGEDIR}${WWWDIR}/
|
|
|
|
.include <bsd.port.mk>
|