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