this repo has no description
1opam-version: "2.0"
2maintainer: "coqdev@inria.fr"
3authors: "The Coq development team, INRIA, CNRS, and contributors."
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"
8synopsis: "Formal proof management system"
9
10depends: [
11 "ocaml" {>= "4.05.0" & < "4.10"}
12 "ocamlfind" {build}
13 "num"
14 "conf-findutils" {build}
15]
16depopts: [
17 "coq-native"
18]
19build: [
20 [
21 "./configure"
22 "-configdir" "%{lib}%/coq/config"
23 "-prefix" prefix
24 "-mandir" man
25 "-docdir" doc
26 "-libdir" "%{lib}%/coq"
27 "-datadir" "%{share}%/coq"
28 "-coqide" "no"
29 "-native-compiler" "yes" {coq-native:installed} "no" {!coq-native:installed}
30 ]
31 [make "-j%{jobs}%"]
32 [make "-j%{jobs}%" "byte"]
33]
34install: [
35 [make "install"]
36 [make "install-byte"]
37]
38patches: ["fix-parallel-make.patch"
39 "fix-meta-plugin.patch"
40 ]
41
42url {
43 src: "https://github.com/coq/coq/releases/download/V8.10.0/coq-8.10.0.tar.gz"
44 checksum: "sha512=f3da7f77f5ec760d6339233f5fcb3d743092d05baa33f3f0781e6729bcb996b14c2cfc45f5000a6fc4cee10b9e7532682bddda25c5dc2616d9e7ca70306b4724"
45}
46extra-source "fix-parallel-make.patch" {
47 src:
48 "https://raw.githubusercontent.com/ocaml/opam-source-archives/main/patches/coq/fix-parallel-make.patch"
49 checksum:
50 "sha512=3801156db1d95bf35948599f366775afff72bbeef958e73321b1f9627220ef7ca61b402c478374f31a23db0f4394bafca5fa56c0708dfad589cad85bfa20d526"
51}
52extra-source "fix-meta-plugin.patch" {
53 src:
54 "https://raw.githubusercontent.com/ocaml/opam-source-archives/main/patches/coq/fix-meta-plugin.patch"
55 checksum:
56 "sha512=634b05c16b8776e0a7c252ac0822b1b5b3330a2ad42ef273823854f79b30d0eaceb57a4b935cf24bb88220fee1f8497210bcc16afa883be46ce292493185a815"
57}
58extra-source "coq.install" {
59 src:
60 "https://raw.githubusercontent.com/ocaml/opam-source-archives/main/patches/coq/coq.install.8.10.0"
61 checksum:
62 "sha512=b501737b4dbd22adc1c0377d744448056fb1dc493caf72c05f57c8463cf23f758373605ab3a50b9f505e4c856c41039d0bd7f81f96ed62adc6a674179523e7d2"
63}