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.08.0"} 16 "stdcompat" {>= "12" & < "19"} 17 "ppxlib" {>= "0.18.0" & < "0.26.0"} 18 "ocamlfind" {>= "1.8.1"} 19 "dune" {>= "1.11.0"} 20 "odoc" {with-doc & >= "1.5.1"} 21] 22build: [ 23 ["dune" "subst"] {dev} 24 [ 25 "dune" 26 "build" 27 "-p" 28 name 29 "-j" 30 jobs 31 "@install" 32 "@runtest" {with-test} 33 "@doc" {with-doc} 34 ] 35] 36dev-repo: "git+https://github.com/thierry-martinez/metapp.git" 37url { 38 src: "https://github.com/thierry-martinez/metapp/archive/v0.4.1.tar.gz" 39 checksum: "sha512=359a2a3b5f8a774bae194e63ec32a61a51ce6c9b047690e973ea8aa457f23843741ccd249cc9d734774c22b24e67001a3dc1d6e14eb763eae41e4f4a2adc6279" 40}