this repo has no description
1opam-version: "2.0" 2license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception" 3synopsis: 4 "The module-graph tool generates a graph of dependencies between OCaml modules using compiled object files" 5description: """\ 6The module-graph tool generates a graph of dependencies between OCaml modules using compiled object files. module-graph scans the current directory and sub-directories looking for .cmt/.cmti/.cmi files, creates a memory graph of dependencies between them, and uses `dot` to display the graph into a pdf/image file. 7""" 8authors: ["Fabrice Le Fessant <fabrice.le_fessant@origin-labs.com>"] 9maintainer: ["Fabrice Le Fessant <fabrice.le_fessant@origin-labs.com>"] 10homepage: "https://ocamlpro.github.io/module-graph" 11doc: "https://ocamlpro.github.io/module-graph/sphinx" 12bug-reports: "https://github.com/ocamlpro/module-graph/issues" 13dev-repo: "git+https://github.com/ocamlpro/module-graph.git" 14tags: "org:ocamlpro" 15build: [ 16 ["dune" "subst"] {dev} 17 ["sh" "-c" "./scripts/before.sh build '%{name}%'"] 18 [ 19 "dune" 20 "build" 21 "-p" 22 name 23 "-j" 24 jobs 25 "@install" 26 "@runtest" {with-test} 27 "@doc" {with-doc} 28 ] 29 ["sh" "-c" "./scripts/after.sh build '%{name}%'"] 30] 31install: [ 32 ["sh" "-c" "./scripts/before.sh install '%{name}%'"] 33] 34depends: [ 35 "ocaml" {>= "4.07.0"} 36 "dune" {>= "2.7.0"} 37 "ocaml-base-compiler" {} 38 "ez_file" {>= "0.3"} 39 "ocplib_stuff" {>= "0.3"} 40 "ppx_inline_test" {with-test} 41 "ppx_expect" {with-test} 42 "odoc" {with-doc} 43 "ocamlformat" {with-test} 44] 45 46url { 47 src: "https://github.com/ocamlpro/module-graph/archive/v0.2.0.tar.gz" 48 checksum: [ "sha256=ec199626be52f5dd03a6ff13bc5053b42523ac0798bf7ca07f631bea2dc0df92" ] 49}