1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-20 20:09:11 +00:00
freebsd-ports/converters/bmfdec/Makefile
Mateusz Piotrowski fce0f4ebce New port: converters/bmfdec: Decompile binary MOF file (BMF) from WMI buffer
Binary MOF buffer in WMI tools:
* Decompile binary MOF file (BMF) to UTF-8 plain text MOF file.
* Decompress binary MOF file (BMF)
* Parse binary MOF file (BMF)

EXAMPLES:
 sysctl -b dev.acpi_wmi.0.bmof | bmf2mof

SEE ALSO:
 acpi_wmi(4)

WWW: https://github.com/pali/bmfdec/

PR:		240353
Submitted by:	<nork ninth-nine com> (previous version)
Reviewed by:	takawata
Differential Revision:	https://reviews.freebsd.org/D21545
2019-09-06 12:58:25 +00:00

25 lines
440 B
Makefile

# $FreeBSD$
PORTNAME= bmfdec
DISTVERSION= g20180113
CATEGORIES= converters devel sysutils
MAINTAINER= takawata@FreeBSD.org
COMMENT= Decompile binary MOF file (BMF) from WMI buffer
LICENSE= GPLv2
USE_GITHUB= yes
GH_ACCOUNT= pali
GH_TAGNAME= a9c0d30
PLIST_FILES= ${BINARIES:S,^,bin/&,}
BINARIES= bmf2mof bmfdec bmfparse
do-install:
(cd ${WRKSRC} && \
${INSTALL_PROGRAM} ${BINARIES} ${STAGEDIR}${PREFIX}/bin)
.include <bsd.port.mk>