Date: Friday, May 29, 2015 @ 02:29:13 Author: anthraxx Revision: 134296
addpkg afl 1.80b-1 Added: afl/ afl/repos/ afl/trunk/ afl/trunk/PKGBUILD ----------+ PKGBUILD | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) Added: afl/trunk/PKGBUILD =================================================================== --- afl/trunk/PKGBUILD (rev 0) +++ afl/trunk/PKGBUILD 2015-05-29 00:29:13 UTC (rev 134296) @@ -0,0 +1,32 @@ +# Maintainer: Levente Polyak <anthraxx[at]archlinux[dot]org> +# Contributor: spider-mario <[email protected]> + +pkgname=afl +pkgver=1.80b +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=('822e93643f0ca10e9ce3eb726667e70eae1789029385cb5332eef65589f7ef0350e6775108634b642e5b394c46599b1e7943227c93cb1b1b50facf1f9e069095') + +build() { + cd ${pkgname}-${pkgver} + make PREFIX=/usr +} + +package() { + cd ${pkgname}-${pkgver} + make PREFIX=/usr DESTDIR="${pkgdir}" install +} + +# vim:set ts=2 sw=2 et:
