# Maintainer: Levente Polyak # Contributor: spider-mario # ALARM: Kevin Mihelich # - make with AFL_NOX86=1 pkgname=afl pkgver=1.89b 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=('33ced2c68dd6a6bd9adc78e5b0ccd2615035c181ea6e77561717e024b6ea0022d1840932d866fd114c04baae174e827d5b07996fa903c108f30de5c87a379b75') build() { cd ${pkgname}-${pkgver} make PREFIX=/usr AFL_NOX86=1 } package() { cd ${pkgname}-${pkgver} make PREFIX=/usr AFL_NOX86=1 DESTDIR="${pkgdir}" install } # vim:set ts=2 sw=2 et: