this repo has no description
1opam-version: "2.0"
2maintainer: "meetup@yomimono.org"
3homepage: "https://github.com/google/AFL"
4dev-repo: "git+https://github.com/google/AFL.git"
5bug-reports: "https://groups.google.com/forum/#!forum/afl-users"
6license: "Apache-2.0"
7build: [
8 [make] {arch = "x86_64"}
9 [make "AFL_NO_X86=1"] {arch != "x86_64"}
10]
11install: [
12 [make "PREFIX=%{prefix}%" "install"] {arch = "x86_64"}
13 [make "AFL_NO_X86=1" "PREFIX=%{prefix}%" "install"] {arch != "x86_64"}
14]
15remove: [
16 [make "PREFIX=%{prefix}%" "uninstall"]
17]
18patches: [
19 "add-uninstall-target.patch"
20]
21synopsis:
22 "American Fuzzy Lop fuzzer by Michal Zalewski, repackaged for convenient use in opam"
23authors: "Michal Zalewski"
24depends: ["ocaml"]
25url {
26 src: "https://github.com/google/AFL/archive/v2.57b.tar.gz"
27 checksum: "sha256=6f05a6515c07abe49f6f292bd13c96004cc1e016bda0c3cc9c2769dd43f163ee"
28}
29extra-source "add-uninstall-target.patch" {
30 src:
31 "https://raw.githubusercontent.com/ocaml/opam-source-archives/main/patches/afl/add-uninstall-target.patch.2.57b"
32 checksum: [
33 "sha256=3b52b872e0f67bfc421509e9348c4571ca4e83a713236f1bf46d12a3ca3a2222"
34 "md5=2c41a9cb71830813fd4e700b5aacc3b5"
35 ]
36}