this repo has no description
1opam-version: "2.0" 2synopsis: "OCaml bindings for Clang API" 3description: """ 4clangml provides bindings to call the Clang API from OCaml. 5""" 6maintainer: ["Thierry Martinez <thierry.martinez@inria.fr>"] 7authors: ["Thierry Martinez <thierry.martinez@inria.fr>"] 8license: "BSD-2-Clause" 9homepage: "https://memcad.gitlabpages.inria.fr/clangml/" 10doc: "https://memcad.gitlabpages.inria.fr/clangml/doc/clangml/index.html" 11bug-reports: "https://gitlab.inria.fr/memcad/clangml/issues" 12depends: [ 13 "conf-libclang" 14 "conf-ncurses" 15 "conf-zlib" 16 "dune" {>= "1.11.0"} 17 "stdcompat" {>= "13"} 18 "ocaml" {>= "4.08.0" & < "4.12.0"} 19 "ocamlfind" {build & >= "1.8.0"} 20 "ocamlcodoc" {with-test & >= "1.0.1"} 21 "pattern" {with-test & >= "0.2.0"} 22 "metapp" {>= "0.3.0"} 23 "metaquot" {>= "0.3.0"} 24 "refl" {>= "0.3.0"} 25 "odoc" {with-doc & >= "1.5.1"} 26] 27dev-repo: "git+https://gitlab.inria.fr/memcad/clangml" 28build: [ 29 ["./configure" "--prefix=%{prefix}%" "--with-llvm-config=%{conf-libclang:config}%"] 30 ["dune" "build" "-p" name "-j" jobs "@install" 31 "@runtest" {with-test} 32 "@doc" {with-doc}]] 33url { 34 src: "https://gitlab.inria.fr/memcad/clangml/-/archive/v4.3.0/clangml-v4.3.0.tar.gz" 35 checksum: "sha512=0f3f1d4f858c9b2752ecc651b0bde378df1a8a675e4c2d8788324a32b4fe4f218e7ed156418cf4cd7e787f3e66bc52876254a3ad7fcf8e0c08d0c176c2eae67b" 36}