this repo has no description
1opam-version: "2.0" 2maintainer: ["jean-christophe.filliatre@cnrs.fr"] 3authors: [ 4 "Sylvain Conchon" 5 "Jean-Christophe Filliâtre" 6 "Julien Signoles" 7] 8homepage: "https://github.com/backtracking/ocamlgraph/" 9license: "LGPL-2.1-only" 10dev-repo: "git+https://github.com/backtracking/ocamlgraph.git" 11bug-reports: "https://github.com/backtracking/ocamlgraph/issues" 12 13tags: [ 14 "graph" 15 "library" 16 "algorithms" 17 "directed graph" 18 "vertice" 19 "edge" 20 "persistent" 21 "imperative" 22] 23build: [ 24 ["touch" "./configure"] # https://github.com/ocaml/opam/issues/2814 25 ["./configure"] 26 [make] 27] 28install: [make "install-findlib"] 29remove: [["ocamlfind" "remove" "ocamlgraph"]] 30depends: [ 31 "ocaml" {< "5.0"} 32 "ocamlfind" {build} 33] 34depopts: [ 35 "lablgtk" 36 "conf-gnomecanvas" 37] 38synopsis: "A generic graph library for OCaml" 39flags: light-uninstall 40url { 41 src: 42 "https://github.com/backtracking/ocamlgraph/releases/download/v1.8.8/ocamlgraph-1.8.8.tar.gz" 43 checksum: [ 44 "sha256=d9eabefb73cad7bc59b3870f832cd0154f8b60feca89ef087f06e59cb9092f55" 45 "md5=9d71ca69271055bd22d0dfe4e939831a" 46 ] 47}