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: "IDE of the Coq formal proof management system"
9
10depends: [
11 "coq" {= version}
12 "lablgtk3-sourceview3" {!= "3.0.beta7"}
13 "conf-findutils" {build}
14 "conf-adwaita-icon-theme"
15]
16build: [
17 [
18 "./configure"
19 "-configdir" "%{lib}%/coq/config"
20 "-prefix" prefix
21 "-mandir" man
22 "-docdir" doc
23 "-libdir" "%{lib}%/coq"
24 "-datadir" "%{share}%/coq"
25 ]
26 [make "-j%{jobs}%" "coqide-files"]
27 [make "-j%{jobs}%" "coqide-opt"]
28]
29install: [
30 make
31 "install-ide-bin"
32 "install-ide-files"
33 "install-ide-info"
34 "install-ide-devfiles"
35]
36patches: ["fix-parallel-make.patch"]
37
38url {
39 src: "https://github.com/coq/coq/releases/download/V8.10.0/coq-8.10.0.tar.gz"
40 checksum: "sha512=f3da7f77f5ec760d6339233f5fcb3d743092d05baa33f3f0781e6729bcb996b14c2cfc45f5000a6fc4cee10b9e7532682bddda25c5dc2616d9e7ca70306b4724"
41}
42extra-source "fix-parallel-make.patch" {
43 src:
44 "https://raw.githubusercontent.com/ocaml/opam-source-archives/main/patches/coqide/fix-parallel-make.patch"
45 checksum:
46 "sha512=3801156db1d95bf35948599f366775afff72bbeef958e73321b1f9627220ef7ca61b402c478374f31a23db0f4394bafca5fa56c0708dfad589cad85bfa20d526"
47}
48extra-source "coqide.install" {
49 src:
50 "https://raw.githubusercontent.com/ocaml/opam-source-archives/main/patches/coqide/coqide.install.8.10.0"
51 checksum:
52 "sha512=0c59f0c3cf3453e92c02b29aceb31090020410d2b0dd2856172cd19b1b2b58b2a1d46047fb08a9c1d4767d87934c73ae6adfcb4204b1ea6a55a85ba75b2b812d"
53}