[OCaml] Org mode parser.
1
# This file is generated by dune, edit dune-project instead
2
opam-version: "2.0"
3
synopsis: "OCaml Org Mode parser library"
4
description: "A compact OCaml library for parsing Org Mode documents."
5
maintainer: ["Marius PETER"]
6
authors: ["Marius PETER"]
7
license: "GPL-3.0-only"
8
homepage: "https://git.mlnp.fr/ocaml-org"
9
depends: [
10
"dune" {>= "3.0"}
11
"ocaml" {>= "5.0"}
12
"menhir" {>= "20231231"}
13
"alcotest" {with-test & >= "0.8.5"}
14
"odoc" {with-doc}
15
]
16
build: [
17
["dune" "subst"] {dev}
18
[
19
"dune"
20
"build"
21
"-p"
22
name
23
"-j"
24
jobs
25
"@install"
26
"@runtest" {with-test}
27
"@doc" {with-doc}
28
]
29
]
30