this repo has no description
1opam-version: "2.0"
2synopsis: "Meta-preprocessor for OCaml"
3description: """
4Meta-preprocessor for OCaml: extends the language with [%meta ... ]
5construction where ... stands for OCaml code evaluated at
6compile-time.
7"""
8maintainer: ["Thierry Martinez <thierry.martinez@inria.fr>"]
9authors: ["Thierry Martinez <thierry.martinez@inria.fr>"]
10license: "BSD-2-Clause"
11homepage: "https://github.com/thierry-martinez/metapp"
12doc: "https://github.com/thierry-martinez/metapp"
13bug-reports: "https://github.com/thierry-martinez/metapp"
14depends: [
15 "ocaml" {>= "4.03.0" & < "4.12.0"}
16 "stdcompat" {>= "12" & < "19"}
17 "ocaml-migrate-parsetree" {>= "1.7.3" & < "2.0.0"}
18 "ocamlfind" {>= "1.8.1"}
19 "dune" {>= "1.11.0"}
20]
21build: [
22 ["dune" "subst"] {dev}
23 [
24 "dune"
25 "build"
26 "-p"
27 name
28 "-j"
29 jobs
30 "@install"
31 "@runtest" {with-test}
32 "@doc" {with-doc}
33 ]
34]
35dev-repo: "git+https://github.com/thierry-martinez/metapp.git"
36url {
37 src: "https://github.com/thierry-martinez/metapp/archive/v0.2.0.tar.gz"
38 checksum: "sha512=1563dac72f8c968cdf8daf5766dc16e4b9c3ede09552dd2018d0a3407c742159a3aa0845b3d2db937cd8f0d534581b4d9f0349fff82c21b9be63160bdda891a7"
39}