freebsd-ports/security/cyberchef/Makefile
Dan Langille d4173e018b Update Cyberchef 9.11.13 to 9.12.0
re: https://github.com/gchq/CyberChef/releases/tag/v9.12.0

Changelog:
Tidied up Normalise Unicode operation
Tidied up Case Insensitive Regex ops
Tidied up ICO extractor
Tidied up OLE2 extractor
Operation elements now have decreasing z-index properties, meaning meaning dropdown
Fixed the magic bug where it wouldnt recommended operations that resulted in lists of files
Always display HTML outputs even if they are above the size threshold
Improved CR preservation logic - now based on entropy
Added 'Show all' button to output file overlay
Improve RTF detection

PR:		242783
Submitted by:	thomas@bsdunix.ch
2019-12-29 17:34:49 +00:00

32 lines
773 B
Makefile

# Created by: Dan Langille <dvl@FreeBSD.org>
# $FreeBSD$
PORTNAME= cyberchef
PORTVERSION= 9.12.0
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>