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