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" & < "4.12.0"} 16 "stdcompat" {>= "12" & < "19"} 17 "ppxlib" {>= "0.16.0" & < "0.18.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.3.0.tar.gz" 39 checksum: "sha512=08edbd4ec92eae6e3ad7062cdb1787cdc1429164d15425a5b126c5c56c51e5ec51bd69052a4f1594b70f34034e1c00d8f82d1be2acf9b9c2a06130858bcc53c5" 40}