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 "-native-compiler" {os = "macos"} "no" {os = "macos"}
31 ]
32 [make "-j%{jobs}%" "coqide-files"]
33 [make "-j%{jobs}%" "coqide-opt"]
34]
35install: [
36 make
37 "install-ide-bin"
38 "install-ide-files"
39 "install-ide-info"
40 "install-ide-devfiles"
41]
42
43url {
44 src: "https://github.com/coq/coq/releases/download/V8.11.1/coq-8.11.1.tar.gz"
45 checksum: "sha512=974f09268ca729b525884e02e3179837e31f8001a2c244f138a36a7984329324083e66d07526bba89acaed656eb7711e2c5b257517309d0479839c5d1ac96aa5"
46}
47extra-source "coqide.install" {
48 src:
49 "https://raw.githubusercontent.com/ocaml/opam-source-archives/main/patches/coqide/coqide.install.8.11.1"
50 checksum:
51 "sha512=0c59f0c3cf3453e92c02b29aceb31090020410d2b0dd2856172cd19b1b2b58b2a1d46047fb08a9c1d4767d87934c73ae6adfcb4204b1ea6a55a85ba75b2b812d"
52}