this repo has no description
1opam-version: "2.0"
2maintainer: "Ralf Jung <post@ralfj.de>"
3authors: "The Coq development team, INRIA, CNRS, University Paris Sud, University Paris 7, Ecole Polytechnique."
4homepage: "https://coq.inria.fr/"
5bug-reports: "https://github.com/coq/coq/issues"
6dev-repo: "git+https://github.com/coq/coq.git"
7license: "LGPL-2.1-only"
8depopts: [
9 "coq-native"
10]
11build: [
12 [
13 "./configure"
14 "-configdir" "%{lib}%/coq/config"
15 "-prefix" prefix
16 "-mandir" man
17 "-docdir" doc
18 "-libdir" "%{lib}%/coq"
19 "-datadir" "%{share}%/coq"
20 "-camlp5dir" "%{camlp5:lib}%"
21 "-coqide" "no"
22 "-native-compiler" "yes" {coq-native:installed} "no" {!coq-native:installed}
23 ]
24 [make "-j%{jobs}%"]
25 [make "-j%{jobs}%" "byte"]
26]
27install: [
28 [make "install"]
29 [make "install-byte"]
30]
31remove: [
32 ["rm" "-R" "%{lib}%/coq" "%{share}%/coq"]
33 ["rm"
34 "%{man}%/man1/coqc.1"
35 "%{man}%/man1/coqchk.1"
36 "%{man}%/man1/coqdep.1"
37 "%{man}%/man1/coqdoc.1"
38 "%{man}%/man1/coqide.1"
39 "%{man}%/man1/coq_makefile.1"
40 "%{man}%/man1/coqmktop.1"
41 "%{man}%/man1/coq-tex.1"
42 "%{man}%/man1/coqtop.1"
43 "%{man}%/man1/coqtop.byte.1"
44 "%{man}%/man1/coqtop.opt.1"
45 "%{man}%/man1/coqwc.1"
46 "%{man}%/man1/gallina.1"
47 "%{share}%/texmf/tex/latex/misc/coqdoc.sty"
48 "%{share}%/emacs/site-lisp/coq-font-lock.el"
49 "%{share}%/emacs/site-lisp/coq-inferior.el"
50 "%{share}%/emacs/site-lisp/gallina-db.el"
51 "%{share}%/emacs/site-lisp/gallina.el"
52 "%{share}%/emacs/site-lisp/gallina-syntax.el"
53 ]
54]
55depends: [
56 "ocaml" {>= "4.02.3" & < "4.10"}
57 "ocamlfind" {build}
58 "camlp5" {< "8"}
59 "num"
60 "conf-findutils" {build}
61]
62synopsis: "Formal proof management system"
63flags: light-uninstall
64url {
65 src: "https://github.com/coq/coq/releases/download/V8.7.1/coq-8.7.1.tar.gz"
66 checksum: [
67 "sha256=d381b38522cee0e73804ee3a763648f602eda942312c18d333f9567c56dbfd03"
68 "md5=15347f45471e2d5277c60585297cd3e0"
69 ]
70}
71extra-source "coq.install" {
72 src:
73 "https://raw.githubusercontent.com/ocaml/opam-source-archives/main/patches/coq/coq.install.8.7.1"
74 checksum: [
75 "sha256=572ff0cb71d3bfba10a84952f4594733ee0c120c40f25df5cd0ddf708b55f3c6"
76 "md5=b85e0eb533d6836c15581f0e5cb0ebc2"
77 ]
78}