PKGBUILDs/community/afl/PKGBUILD

42 lines
1.5 KiB
Bash
Raw Normal View History

2015-05-29 01:53:39 +00:00
# Maintainer: Levente Polyak <anthraxx[at]archlinux[dot]org>
# Contributor: spider-mario <spidermario@free.fr>
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
2016-02-22 02:39:23 +00:00
# - make with AFL_NO_X86=1
2017-09-12 00:26:26 +00:00
# - strip -fno-plt from v5 CFLAGS (old LLVM)
2015-05-29 01:53:39 +00:00
pkgname=afl
2019-08-12 12:52:46 +00:00
pkgver=2.53b
pkgrel=1
2015-05-29 01:53:39 +00:00
pkgdesc='Security-oriented fuzzer using compile-time instrumentation and genetic algorithms'
2016-08-06 15:12:34 +00:00
url='http://lcamtuf.coredump.cx/afl/'
2019-02-10 22:05:13 +00:00
arch=('x86_64')
2015-05-29 01:53:39 +00:00
license=('Apache')
depends=('glibc' 'bash')
2016-07-06 18:11:08 +00:00
optdepends=('gcc: gcc instrumentation support'
'clang: clang instrumentation support'
'llvm: experimental clang-fast instrumentation support'
'gnuplot: graph plotting support')
2016-03-29 18:20:21 +00:00
makedepends=('clang' 'llvm' 'gcc' 'wget' 'python')
2015-05-29 01:53:39 +00:00
provides=('american-fuzzy-lop')
replaces=('american-fuzzy-lop')
options=('!emptydirs' '!strip')
2019-08-12 12:52:46 +00:00
source=(https://github.com/google/AFL/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz)
sha256sums=('ea4917c0c982f45866d6fbf129a78eb9959736bd69bb269cab57f2695661e6e6')
sha512sums=('709fba16eda4b0175273ac24e2fcb0fa469d203b666c87a367a3bd76e3acea1f67642b8f492065b5b5b04c0224a47aa121e7b056a1b39de8cf8979f9367cd051')
2015-05-29 01:53:39 +00:00
build() {
2019-08-12 12:52:46 +00:00
cd AFL-${pkgver}
2017-09-12 00:26:26 +00:00
[[ $CARCH == "arm" ]] && CFLAGS=`echo $CFLAGS | sed -e 's/-fno-plt//'` && CXXFLAGS="$CFLAGS"
2016-02-22 02:39:23 +00:00
make PREFIX=/usr AFL_NO_X86=1
2015-10-27 03:14:50 +00:00
make -C llvm_mode PREFIX=/usr
2015-05-29 01:53:39 +00:00
}
package() {
2019-08-12 12:52:46 +00:00
cd AFL-${pkgver}
2016-02-22 02:39:23 +00:00
make PREFIX=/usr AFL_NO_X86=1 DESTDIR="${pkgdir}" install
2016-08-23 18:16:48 +00:00
install -Dm 644 llvm_mode/README.llvm -t "${pkgdir}/usr/share/doc/${pkgname}"
2015-05-29 01:53:39 +00:00
}
2015-09-04 00:11:24 +00:00
# vim: ts=2 sw=2 et: