diff options
Diffstat (limited to '')
-rw-r--r-- | stitch.opam | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/stitch.opam b/stitch.opam new file mode 100644 index 0000000..0a77db1 --- /dev/null +++ b/stitch.opam @@ -0,0 +1,32 @@ +# This file is generated by dune, edit dune-project instead +opam-version: "2.0" +synopsis: "A Terminal Note Taking App" +description: "" +maintainer: ["Marc Coquand"] +authors: ["Marc Coquand"] +license: "GPL-3.0-only" +tags: ["productivity" "minimal"] +doc: "https://url/to/documentation" +depends: [ + "ocaml" + "dune" {>= "3.11"} + "cmdliner" + "notty" + "lambda-term" + "shexp" + "odoc" {with-doc} +] +build: [ + ["dune" "subst"] {dev} + [ + "dune" + "build" + "-p" + name + "-j" + jobs + "@install" + "@runtest" {with-test} + "@doc" {with-doc} + ] +] |