-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #15766 from anton-trunov/coqide-8.11.0
[new release] Add CoqIDE 8.11.0
- Loading branch information
Showing
2 changed files
with
58 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
bin: [ | ||
"bin/coqide" | ||
] | ||
share_root: [ | ||
"ide/coq.lang" {"coq/coq.lang"} | ||
"ide/coq-ssreflect.lang" {"coq/coq-ssreflect.lang"} | ||
"ide/coq.png" {"coq/coq.png"} | ||
"ide/coq_style.xml" {"coq/coq_style.xml"} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
opam-version: "2.0" | ||
maintainer: "coqdev@inria.fr" | ||
authors: "The Coq development team, INRIA, CNRS, and contributors." | ||
homepage: "https://coq.inria.fr/" | ||
bug-reports: "/~https://github.com/coq/coq/issues" | ||
dev-repo: "git+/~https://github.com/coq/coq.git" | ||
license: "LGPL-2.1-only" | ||
synopsis: "IDE of the Coq formal proof management system" | ||
description: """ | ||
CoqIDE is a graphical user interface for interactive development | ||
of mathematical definitions, executable algorithms, and proofs of theorems | ||
using the Coq proof assistant. | ||
""" | ||
|
||
depends: [ | ||
"coq" {= version} | ||
"lablgtk3-sourceview3" {!= "3.0.beta7"} | ||
"conf-findutils" {build} | ||
"conf-gnome-icon-theme3" | ||
] | ||
build: [ | ||
[ | ||
"./configure" | ||
"-configdir" "%{lib}%/coq/config" | ||
"-prefix" prefix | ||
"-mandir" man | ||
"-docdir" doc | ||
"-libdir" "%{lib}%/coq" | ||
"-datadir" "%{share}%/coq" | ||
] | ||
[make "-j%{jobs}%" "coqide-files"] | ||
[make "-j%{jobs}%" "coqide-opt"] | ||
] | ||
install: [ | ||
make | ||
"install-ide-bin" | ||
"install-ide-files" | ||
"install-ide-info" | ||
"install-ide-devfiles" | ||
] | ||
|
||
extra-files: [ | ||
["coqide.install" "sha512=0c59f0c3cf3453e92c02b29aceb31090020410d2b0dd2856172cd19b1b2b58b2a1d46047fb08a9c1d4767d87934c73ae6adfcb4204b1ea6a55a85ba75b2b812d"] | ||
] | ||
|
||
url { | ||
src: "/~https://github.com/coq/coq/archive/V8.11.0.tar.gz" | ||
checksum: "sha512=db7c3da4bab268cb729bcf9f03f5cd3bbb7a3b5b7094fe2b110189e54e436f9883640db88643d09cec5dc169c209a51661238e41b8de3035ff7ea8561c794c89" | ||
} |