An OCaml implementation of glob(3)
1# This file is generated by dune, edit dune-project instead
2opam-version: "2.0"
3synopsis: "A pure OCaml implementation of glob(3)"
4description: "Glob provides a simple implementation of glob(3)."
5maintainer: ["Patrick Ferris <patrick@sirref.org>"]
6authors: ["Patrick Ferris <patrick@sirref.org>"]
7license: "ISC"
8homepage: "https://patrick.sirref.org/bib"
9doc: "https://patrick.sirref.org/software/glob/docs/"
10bug-reports: "https://tangled.org/patrick.sirref.org/glob/issues"
11depends: [
12 "dune" {>= "3.19"}
13 "fmt"
14 "alcotest" {with-test}
15 "eio_main" {with-test}
16 "odoc" {with-doc}
17]
18depopts: ["eio"]
19build: [
20 ["dune" "subst"] {dev}
21 [
22 "dune"
23 "build"
24 "-p"
25 name
26 "-j"
27 jobs
28 "@install"
29 "@runtest" {with-test}
30 "@doc" {with-doc}
31 ]
32]
33dev-repo: "git+https://git.sirref.org/glob.git"
34x-maintenance-intent: ["(latest)"]