this repo has no description
1opam-version: "2.0"
2maintainer: "Ivan Gotovchits <ivg@ieee.org>"
3authors: "BAP Team"
4homepage: "https://github.com/BinaryAnalysisPlatform/bap/"
5bug-reports: "https://github.com/BinaryAnalysisPlatform/bap/issues"
6dev-repo: "git+https://github.com/BinaryAnalysisPlatform/bap/"
7license: "MIT"
8build: [
9 ["./configure"
10 "--prefix=%{prefix}%"
11 "--with-cxx=`which clang++`"
12 "--mandir=%{man}%"
13 "--enable-bap-std"]
14 [make]
15]
16
17install: [
18 [make "reinstall"]
19]
20
21remove: [
22 ["ocamlfind" "remove" "bap"]
23 ["rm" "-f" "%{bin}%/baptop"]
24 ["rm" "-f" "%{bin}%/ppx-bap"]
25]
26
27depends: [
28 "ocaml" {>= "4.08.0" }
29 "base-unix"
30 "bap-future" {= "2.2.0"}
31 "bap-knowledge" {= "2.2.0"}
32 "bitvec" {= "2.2.0"}
33 "bitvec-order" {= "2.2.0"}
34 "bap-core-theory" {= "2.2.0"}
35 "bap-bundle" {= "2.2.0"}
36 "bap-main" {= "2.2.0"}
37 "bap-plugins" {= "2.2.0"}
38 "bap-relation" {= "2.2.0"}
39 "camlzip" {>= "1.07"}
40 "core_kernel" {>= "v0.14"}
41 "bin_prot" {>= "v0.14"}
42 "fileutils"
43 "graphlib" {= "2.2.0"}
44 "oasis" {build & >= "0.4.7"}
45 "ocamlfind" {>= "1.5.6" & < "2.0"}
46 "ppx_bap" {>= "v0.14"}
47 "regular" {= "2.2.0"}
48 "uri"
49 "utop" {build & >= "2.0.0"}
50 "uuidm"
51 "zarith"
52 "cmdliner" {>= "0.9.8"}
53 "ogre" {= "2.2.0"}
54 "monads" {= "2.2.0"}
55 "result"
56 "mmap"
57]
58depexts: [
59 ["libgmp-dev" "libzip-dev" "clang"] {os-distribution = "ubuntu"}
60 ["gmp" "libzip"] {os = "macos" & os-distribution = "macports"}
61 ["clang"] {os-distribution = "debian"}
62 ["binutils" "gmp-dev" "libzip-dev" "m4" "perl" "zlib-dev"] {os-distribution = "alpine"}
63
64
65]
66conflicts: [
67 "fileutils" {= "0.5.0"}
68 "jbuilder" {= "1.0+beta18"}
69]
70synopsis: "The Binary Analysis Platform Standard Library"
71description: "Provides the main BAP library."
72flags: light-uninstall
73
74url {
75 src: "https://github.com/BinaryAnalysisPlatform/bap/archive/v2.2.0.tar.gz"
76 checksum: [
77 "sha256=7c6d0dfe2640e800829617dd150ffe748493fe3f317ed41be44312b2821deb46"
78 "md5=5dbc6677d646bec59fd7414f23e88cf8"
79 ]
80 mirrors: "https://mirrors.aegis.cylab.cmu.edu/bap/2.2.0/v2.2.0.tar.gz"
81}