blob: 67e668ac69866a73a08ea05e60c9910f228688cd [file] [log] [blame]
Andrew Geissler517393d2023-01-13 08:55:19 -06001SUMMARY = "Various data structures and parsing tools for UEFI firmware."
2DESCRIPTION = "This package contains Python UEFI firmware parser tool. The \
3UEFI firmware parser is a simple module and set of scripts for parsing, \
4extracting, and recreating UEFI firmware volumes. This includes parsing \
5modules for BIOS, OptionROM, Intel ME and other formats too."
6HOMEPAGE = "https://github.com/theopolis/uefi-firmware-parser"
Andrew Geissler517393d2023-01-13 08:55:19 -06007LICENSE = "BSD-2-Clause & BSD-3-Clause"
Andrew Geissler5082cc72023-09-11 08:41:39 -04008LIC_FILES_CHKSUM = "file://setup.py;md5=5a59066a8676f17262ef7e691f8ef253"
Andrew Geissler517393d2023-01-13 08:55:19 -06009
10SRC_URI = "git://github.com/theopolis/uefi-firmware-parser;protocol=https;branch=master"
11
Andrew Geissler5082cc72023-09-11 08:41:39 -040012SRCREV = "f289219b99eb525cbc58e4dc2b07df3811f92ef7"
Andrew Geissler517393d2023-01-13 08:55:19 -060013
14S = "${WORKDIR}/git"
15
16inherit setuptools3
Patrick Williamsb542dec2023-06-09 01:26:37 -050017
18RDEPENDS:${PN} += " \
19 python3-ctypes \
20 python3-logging \
21"