void-packages/srcpkgs/afl++/template

36 lines
1008 B
Bash

# Template file for 'afl++'
pkgname=afl++
version=4.21c
revision=2
archs="i686* x86_64* aarch64*"
build_helper="qemu"
build_style=gnu-makefile
hostmakedepends="which"
makedepends="gmp-devel lld18 llvm18-devel python3-devel"
short_desc="American fuzzy lop Plus Plus - a brute-force fuzzer"
maintainer="Leah Neukirchen <leah@vuxu.org>"
license="Apache-2.0"
homepage="https://aflplus.plus/"
distfiles="https://github.com/AFLplusplus/AFLplusplus/archive/refs/tags/v${version}.tar.gz"
checksum=11f7c77d37cff6e7f65ac7cc55bab7901e0c6208e845a38764394d04ed567b30
conflicts="afl>=0"
replaces="afl>=0"
nostrip_files="small_archive.a small_exec.elf"
if [ "$CROSS_BUILD" ]; then
export LLVM_CONFIG=${XBPS_CROSS_BASE}/usr/bin/llvm-config
else
export LLVM_CONFIG=llvm-config
fi
case "$XBPS_TARGET_MACHINE" in
aarch64*) export AFL_NO_X86="YES" ;;
esac
post_install() {
# Test cases contain binary .../testcases/others/elf/small_exec.elf
# so move them to /usr/lib/afl
mv ${DESTDIR}/usr/{share,lib}/afl/testcases
}