|
| 1 | +opam-version: "2.0" |
| 2 | +version: "8.16.dev" |
| 3 | + |
| 4 | +homepage: "https://metacoq.github.io/metacoq" |
| 5 | +dev-repo: "git+https://github.com/MetaCoq/metacoq.git#coq-8.16" |
| 6 | +bug-reports: "https://github.com/MetaCoq/metacoq/issues" |
| 7 | +authors: ["Abhishek Anand < [email protected]>" |
| 8 | + "Danil Annenkov < [email protected]>" |
| 9 | + "Simon Boulier < [email protected]>" |
| 10 | + |
| 11 | + "Yannick Forster < [email protected]>" |
| 12 | + "Fabian Kunze < [email protected]>" |
| 13 | + "Meven Lennon-Bertrand < [email protected]>" |
| 14 | + "Kenji Maillard < [email protected]>" |
| 15 | + "Gregory Malecha < [email protected]>" |
| 16 | + "Jakob Botsch Nielsen < [email protected]>" |
| 17 | + "Matthieu Sozeau < [email protected]>" |
| 18 | + "Nicolas Tabareau < [email protected]>" |
| 19 | + "Théo Winterhalter < [email protected]>" |
| 20 | +] |
| 21 | +license: "MIT" |
| 22 | +build: [ |
| 23 | + ["bash" "./configure.sh"] |
| 24 | + [make "-j" "%{jobs}%" "-C" "safechecker-plugin"] |
| 25 | +] |
| 26 | +install: [ |
| 27 | + [make "-C" "safechecker-plugin" "install"] |
| 28 | +] |
| 29 | +depends: [ |
| 30 | + "coq-metacoq-template-pcuic" {= version} |
| 31 | +] |
| 32 | +synopsis: "Implementation and verification of an erasure procedure for Coq" |
| 33 | +description: """ |
| 34 | +MetaCoq is a meta-programming framework for Coq. |
| 35 | + |
| 36 | +The Erasure module provides a complete specification of Coq's so-called |
| 37 | +\"extraction\" procedure, starting from the PCUIC calculus and targeting |
| 38 | +untyped call-by-value lambda-calculus. |
| 39 | + |
| 40 | +The `erasure` function translates types and proofs in well-typed terms |
| 41 | +into a dummy `tBox` constructor, following closely P. Letouzey's PhD |
| 42 | +thesis. |
| 43 | +""" |
0 commit comments