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