mirror of
https://git.freebsd.org/ports.git
synced 2025-06-03 11:56:28 -04:00
BinGrok is a binary/hexadecimal editor created specifically with the goal of reverse-engineering proprietary data formats in mind. It allows for creation of C-struct-like "views" of your data for better visualization of the parts that you have deciphered. WWW: https://github.com/spuriousdata/BinGrok
27 lines
579 B
Makefile
27 lines
579 B
Makefile
PORTNAME= ${GH_PROJECT:tl}
|
|
PORTVERSION= 0.0.1
|
|
DISTVERSIONPREFIX= v
|
|
CATEGORIES= editors
|
|
|
|
MAINTAINER= danfe@FreeBSD.org
|
|
COMMENT= Binary data editor for reverse engineering
|
|
WWW= https://github.com/spuriousdata/BinGrok
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
USES= qmake qt:5
|
|
USE_QT= buildtools:build core gui widgets
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= spuriousdata
|
|
GH_PROJECT= BinGrok
|
|
|
|
QMAKE_SOURCE_PATH= ${WRKSRC}/src
|
|
|
|
PLIST_FILES= bin/${PORTNAME}
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${INSTALL_WRKSRC}/${GH_PROJECT} \
|
|
${STAGEDIR}${PREFIX}/bin/${PORTNAME}
|
|
|
|
.include <bsd.port.mk>
|