Andrew Geissler | 517393d | 2023-01-13 08:55:19 -0600 | [diff] [blame] | 1 | SUMMARY = "Firmware analysis tool" |
| 2 | DESCRIPTION = "This package contains Python Binwalk tool. Binwalk is a fast, \ |
| 3 | easy to use tool for analyzing, reverse engineering, and extracting firmware \ |
| 4 | images." |
| 5 | HOMEPAGE = "https://github.com/ReFirmLabs/binwalk" |
| 6 | LICENSE = "MIT" |
| 7 | LIC_FILES_CHKSUM = "file://LICENSE;md5=65bbee055d3ea3bfc475f07aecf4de64" |
| 8 | |
| 9 | SRC_URI = "git://github.com/ReFirmLabs/binwalk;protocol=https;branch=master" |
| 10 | |
Patrick Williams | 2a25492 | 2023-08-11 09:48:11 -0500 | [diff] [blame] | 11 | SRCREV = "cddfede795971045d99422bd7a9676c8803ec5ee" |
Andrew Geissler | 517393d | 2023-01-13 08:55:19 -0600 | [diff] [blame] | 12 | |
| 13 | S = "${WORKDIR}/git" |
| 14 | |
Patrick Williams | 73bd93f | 2024-02-20 08:07:48 -0600 | [diff] [blame] | 15 | UPSTREAM_CHECK_GITTAGREGEX = "v(?P<pver>\d+(\.\d+)+)" |
| 16 | |
Andrew Geissler | 517393d | 2023-01-13 08:55:19 -0600 | [diff] [blame] | 17 | inherit setuptools3 |
| 18 | |
Patrick Williams | 520786c | 2023-06-25 16:20:36 -0500 | [diff] [blame] | 19 | RDEPENDS:${PN} += " \ |
| 20 | python3-compression \ |
| 21 | python3-logging \ |
| 22 | python3-netserver \ |
| 23 | python3-setuptools \ |
| 24 | python3-stringold \ |
| 25 | " |