forked from ScoopInstaller/Main
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcoq.json
44 lines (44 loc) · 1.63 KB
/
coq.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"homepage": "https://coq.inria.fr/",
"description": "A formal proof management system. It provides a formal language to write mathematical definitions, executable algorithms and theorems together with an environment for semi-interactive development of machine-checked proofs.",
"version": "8.10.0",
"license": "LGPL-2.1-only",
"architecture": {
"64bit": {
"url": "https://github.com/coq/coq/releases/download/V8.10.0/coq-8.10.0-installer-windows-x86_64.exe#/dl.7z",
"hash": "ee0bc7fbf7b42bb3e46d497379355ec9b30bd8d5e69ff6af576d538389683ded"
},
"32bit": {
"url": "https://github.com/coq/coq/releases/download/V8.10.0/coq-8.10.0-installer-windows-i686.exe#/dl.7z",
"hash": "f6ee35d91b5963d2069b73e5592720524ee28e75d914c045fb780874316c1cfd"
}
},
"bin": [
"bin\\coqtop.exe",
"bin\\coqc.exe",
"bin\\coqchk.exe"
],
"env_set": {
"COQBIN": "bin"
},
"shortcuts": [
[
"bin\\coqide.exe",
"CoqIDE"
]
],
"post_install": "Remove-Item \"$dir\\`$PLUGINSDIR\", \"$dir\\Uninstall.exe.nsis\" -Recurse -Force",
"checkver": {
"github": "https://github.com/coq/coq"
},
"autoupdate": {
"architecture": {
"64bit": {
"url": "https://github.com/coq/coq/releases/download/V$version/coq-$version-installer-windows-x86_64.exe#/dl.7z"
},
"32bit": {
"url": "https://github.com/coq/coq/releases/download/V$version/coq-$version-installer-windows-i686.exe#/dl.7z"
}
}
}
}