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"
9description: """
10CoqIDE is a graphical user interface for interactive development
11of mathematical definitions, executable algorithms, and proofs of theorems
12using the Coq proof assistant.
13"""
14
15depends: [
16 "coq" {= version}
17 "lablgtk3-sourceview3" {!= "3.0.beta7"}
18 "conf-findutils" {build}
19 "conf-adwaita-icon-theme"
20]
21build: [
22 [
23 "./configure"
24 "-configdir" "%{lib}%/coq/config"
25 "-prefix" prefix
26 "-mandir" man
27 "-docdir" doc
28 "-libdir" "%{lib}%/coq"
29 "-datadir" "%{share}%/coq"
30 ]
31 [make "-j%{jobs}%" "coqide-files"]
32 [make "-j%{jobs}%" "coqide-opt"]
33]
34install: [
35 make
36 "install-ide-bin"
37 "install-ide-files"
38 "install-ide-info"
39 "install-ide-devfiles"
40]
41
42url {
43 src: "https://github.com/coq/coq/releases/download/V8.10.1/coq-8.10.1.tar.gz"
44 checksum: "sha512=5c6a20e283c351a4b0ecdb393fb77cfc9b72b474453c99c95f52a70da47dd72fff7229c2ef92d61aadade8f2ed6e03c1a7740d0fa2fcc87ea72659f95eceb2dc"
45}
46extra-source "coqide.install" {
47 src:
48 "https://raw.githubusercontent.com/ocaml/opam-source-archives/main/patches/coqide/coqide.install.8.10.1"
49 checksum:
50 "sha512=0c59f0c3cf3453e92c02b29aceb31090020410d2b0dd2856172cd19b1b2b58b2a1d46047fb08a9c1d4767d87934c73ae6adfcb4204b1ea6a55a85ba75b2b812d"
51}