-
Notifications
You must be signed in to change notification settings - Fork 9
/
dune-project
28 lines (25 loc) · 831 Bytes
/
dune-project
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
(lang dune 2.7)
(generate_opam_files true)
(name metapp)
(license "BSD-2-Clause")
(maintainers "Thierry Martinez <thierry.martinez@inria.fr>")
(authors "Thierry Martinez <thierry.martinez@inria.fr>")
(source (uri "git+https://github.com/thierry-martinez/metapp.git"))
(homepage "https://github.com/thierry-martinez/metapp")
(bug_reports "https://github.com/thierry-martinez/metapp")
(documentation "https://github.com/thierry-martinez/metapp")
(version "0.4.4")
(package
(name metapp)
(synopsis "Meta-preprocessor for OCaml")
(description "\
Meta-preprocessor for OCaml: extends the language with [%meta ... ]
construction where ... stands for OCaml code evaluated at
compile-time.
")
(depends
(ocaml (>= 4.08.0))
(stdcompat (>= 12))
(ppxlib (>= 0.22.0))
(ocamlfind (>= 1.8.1))
(odoc (and :with-doc (>= 1.5.1)))))