# Maintainer: Levente Polyak # Contributor: spider-mario # ALARM: Kevin Mihelich # - make with AFL_NOX86=1 pkgname=afl pkgver=1.93b pkgrel=1 pkgdesc='Security-oriented fuzzer using compile-time instrumentation and genetic algorithms' arch=('i686' 'x86_64') url="http://lcamtuf.coredump.cx/afl/" license=('Apache') depends=('glibc' 'bash') optdepends=( 'gcc: gcc instrumentation support' 'clang: clang instrumentation support' ) provides=('american-fuzzy-lop') replaces=('american-fuzzy-lop') options=('!emptydirs' '!strip') source=(${pkgname}-${pkgver}.tgz::http://lcamtuf.coredump.cx/${pkgname}/releases/${pkgname}-${pkgver}.tgz) sha512sums=('2fc402c78c183ab6988957054a40dfd4a48d99536a7f32d573655812eb39e118d9813acfeb6e27b643ef414a23746b7514233acecce6601e04a23feb6e82860a') build() { cd ${pkgname}-${pkgver} make PREFIX=/usr AFL_NOX86=1 } package() { cd ${pkgname}-${pkgver} make PREFIX=/usr AFL_NOX86=1 DESTDIR="${pkgdir}" install } # vim: ts=2 sw=2 et: