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] 40url { 41 src: "https://gasche.gitlab.io/path_glob/releases/path_glob-0.3.tgz" 42 checksum: [ 43 "sha256=332dae23b700fa050d1fd6e4f3d2e24b8dd1db2c8ea4f76c54e2e54851c9d226" 44 "sha512=205b0bbdf0d36b21e978603e4df264a0b185f3c1e3a20764fb254368977977d076a5b9c53b88110b721651d43a782e45742b14891412460101fb5fa8a5986173" 45 ] 46}