aboutsummaryrefslogtreecommitdiff
path: root/stitch.opam
blob: 18a5bdeb52192df78158d351733d192f829ac75b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
synopsis: "A Note Composer"
description:
  "A minimal CLI tool that allows you to compose notes together. Useful as part of a bigger system for building a PKM."
maintainer: ["Marc Coquand"]
authors: ["Marc Coquand"]
license: "BSD-3-Clause"
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}
  ]
]