27 lines
731 B
Bash
27 lines
731 B
Bash
# Template file for 'binwalk'
|
|
pkgname=binwalk
|
|
version=2.3.1
|
|
revision=2
|
|
build_style=python3-module
|
|
pycompile_module="binwalk"
|
|
hostmakedepends="python3"
|
|
depends="python3"
|
|
checkdepends="python3-coverage python3-nose"
|
|
short_desc="Easy tool for analyzing/reversing/extracting firmware images"
|
|
maintainer="Duncaen <duncaen@voidlinux.org>"
|
|
license="MIT"
|
|
homepage="https://github.com/ReFirmLabs/binwalk"
|
|
distfiles="https://github.com/ReFirmLabs/binwalk/archive/v${version}.tar.gz"
|
|
checksum=7ec9d8fcb8686f4060d37e1096669e3ed8ce1194c91ad80199622448bcc01b19
|
|
|
|
post_extract() {
|
|
vsed -i -e 's;/etc/bash_completion.d/%s;%s.bash;' setup.py
|
|
}
|
|
|
|
do_check() {
|
|
PYTHONPATH="${wrksrc}/src" python3 setup.py test
|
|
}
|
|
|
|
post_install() {
|
|
vlicense LICENSE
|
|
}
|