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 "ocamlfind" {build}
18 "conf-findutils" {build}
19 "lablgtk3-sourceview3"
20 "conf-adwaita-icon-theme"
21]
22build: [
23 [
24 "./configure"
25 "-configdir" "%{lib}%/coq/config"
26 "-prefix" prefix
27 "-mandir" man
28 "-docdir" doc
29 "-libdir" "%{lib}%/coq"
30 "-datadir" "%{share}%/coq"
31 "-native-compiler" "yes" {coq-native:installed} "no" {!coq-native:installed}
32 ]
33 [make "COQ_USE_DUNE=" "-j%{jobs}%" "coqide-files"]
34 [make "COQ_USE_DUNE=" "-j%{jobs}%" "coqide-opt"]
35]
36install: [
37 make "COQ_USE_DUNE="
38 "install-ide-bin"
39 "install-ide-files"
40 "install-ide-info"
41 "install-ide-devfiles"
42]
43
44url {
45 src: "https://github.com/coq/coq/releases/download/V8.13.2/coq-8.13.2.tar.gz"
46 checksum: "sha256=1e7793d8483f1e939f62df6749f843df967a15d843a4a5acb024904b76e25a14"
47}
48extra-source "coqide.install" {
49 src:
50 "https://raw.githubusercontent.com/ocaml/opam-source-archives/main/patches/coqide/coqide.install.8.13.2"
51 checksum:
52 "sha512=3eba9f94c7cc2a4b9b4fc8be549d7e5b3125315360cc85fb1001ba25d2eb5fb174c358ba3295036dda44197ec068e18c0b2f3b341aaa77b73fdb75d1e7d5c27f"
53}