mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
35 lines
1 KiB
Bash
35 lines
1 KiB
Bash
# Maintainer: Levente Polyak <anthraxx[at]archlinux[dot]org>
|
|
# Contributor: spider-mario <spidermario@free.fr>
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
# - make with AFL_NOX86=1
|
|
|
|
pkgname=afl
|
|
pkgver=1.83b
|
|
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=('efb9126b89b294ee171b0d4fa7e9e71d2bb55e572a17d9d2c7c83ee613b42fc27f70b75671e7fb1d816bad1a9baaf71c36ba4b05135d39a1644e732d35fe09ec')
|
|
|
|
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:
|