Created
June 26, 2021 12:33
-
-
Save bennofs/c57bc06ff239f4bc1db2c9aa2fcea08b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Maintainer GI Jack <[email protected]> | |
pkgname=aflplusplus | |
pkgver=3.13c | |
_pkgver=3.13c | |
pkgrel=1 | |
pkgdesc="afl++ is afl with community patches, AFLfast power schedules, qemu 3.1 upgrade + laf-intel support, MOpt mutators, InsTrim instrumentation, unicorn_mode and a lot more!" | |
arch=('x86_64') | |
url="https://github.com/vanhauser-thc/AFLplusplus" | |
license=('Apache') | |
provides=('afl') | |
conflicts=('afl') | |
optdepends=('qemu: use QEMU with afl') | |
source=("https://github.com/AFLplusplus/AFLplusplus/archive/${_pkgver}.tar.gz") | |
sha256sums=('7b0d5b17acb38c19878865b91a26ec718fa0ef53363473240c7cfbdbed356f7f') | |
prepare() { | |
cd "AFLplusplus-${_pkgver}" | |
make clean | |
} | |
build() { | |
cd "AFLplusplus-${_pkgver}" | |
make PREFIX="/usr" distrib | |
} | |
package() { | |
cd "AFLplusplus-${_pkgver}" | |
make install PREFIX="/usr" DESTDIR="${pkgdir}" | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment