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.3.0"}
31 "bap-knowledge" {= "2.3.0"}
32 "bitvec" {= "2.3.0"}
33 "bitvec-order" {= "2.3.0"}
34 "bap-core-theory" {= "2.3.0"}
35 "bap-bundle" {= "2.3.0"}
36 "bap-main" {= "2.3.0"}
37 "bap-plugins" {= "2.3.0"}
38 "bap-relation" {= "2.3.0"}
39 "camlzip" {>= "1.07"}
40 "core_kernel" {>= "v0.14"}
41 "bin_prot" {>= "v0.14"}
42 "fileutils"
43 "graphlib" {= "2.3.0"}
44 "oasis" {build & >= "0.4.7"}
45 "ocamlfind" {>= "1.5.6" & < "2.0"}
46 "ppx_bap" {>= "v0.14"}
47 "regular" {= "2.3.0"}
48 "uri"
49 "utop" {build & >= "2.0.0"}
50 "uuidm"
51 "zarith"
52 "cmdliner" {>= "0.9.8"}
53 "ogre" {= "2.3.0"}
54 "monads" {= "2.3.0"}
55 "result"
56 "mmap"
57 "conf-gmp" {build}
58 "conf-zlib" {build}
59 "conf-clang" {build}
60 "conf-which" {build}
61]
62conflicts: [
63 "fileutils" {= "0.5.0"}
64 "jbuilder" {= "1.0+beta18"}
65]
66synopsis: "The Binary Analysis Platform Standard Library"
67description: "Provides the main BAP library."
68flags: light-uninstall
69
70url {
71 src: "https://github.com/BinaryAnalysisPlatform/bap/archive/v2.3.0.tar.gz"
72 checksum: [
73 "sha256=a6e80853aaaa26b7ca564d9878891d7146ec1c83852541387c1bba1ad036b8ea"
74 "md5=13f2cb1e3b9d90348852252fb0f2d09f"
75 ]
76 mirrors: "https://mirrors.aegis.cylab.cmu.edu/bap/2.3.0/v2.3.0.tar.gz"
77}