this repo has no description
1opam-version: "2.0" 2synopsis: "Globbing file paths" 3description: """ 4An implementation of 'glob' patterns for file paths, 5extracted from ocamlbuild. 6""" 7 8homepage: "https://gitlab.com/gasche/path_glob" 9bug-reports: "https://gitlab.com/gasche/path_glob/-/issues" 10doc: "https://gasche.gitlab.io/path_glob/doc/path_glob" 11dev-repo: "git+https://gitlab.com/gasche/path_glob.git" 12 13maintainer: ["Gabriel Scherer <gabriel.scherer@gmail.com>"] 14authors: [ 15 "Berke Durak" 16] 17 18license: "LGPL-2.0-only WITH OCaml-LGPL-linking-exception" 19 20depends: [ 21 "ocaml" {>= "4.03"} 22 "dune" {>= "2.7"} 23 "odoc" {with-doc} 24] 25 26build: [ 27 ["dune" "subst"] {dev} 28 [ 29 "dune" 30 "build" 31 "-p" 32 name 33 "-j" 34 jobs 35 "@install" 36 "@runtest" {with-test} 37 "@doc" {with-doc} 38 ] 39] 40x-commit-hash: "2cc5714fbe0439af7ba36eeff8b6d1acd437474b" 41url { 42 src: "https://gasche.gitlab.io/path_glob/releases/path_glob-0.2.tbz" 43 checksum: [ 44 "sha256=5e09a2148876b68ac8fb315679ba69b1e207ced55d91a3ea5b3046f917102a07" 45 "sha512=f55775c694e4b66acdfc9210cccc4af505ecbce3101b638495623d7f18a169e4c904e1b86c1c13ec3af9ae765acd6eedfa6cb7059a0c8a4a1aff375b7e9114ab" 46 ] 47}