forked from ScoopInstaller/Extras
-
Notifications
You must be signed in to change notification settings - Fork 0
/
coq.json
40 lines (40 loc) · 1.46 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
{
"homepage": "https://coq.inria.fr/",
"description": "Coq is 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.8.2",
"license": "LGPL-2.1-only",
"architecture": {
"64bit": {
"url": "https://github.com/coq/coq/releases/download/V8.8.2/coq-8.8.2-installer-windows-x86_64.exe",
"hash": "f60b842e508546e955bafe9d61d2c997d3848814e3ae79f7e5deed996838165f"
},
"32bit": {
"url": "https://github.com/coq/coq/releases/download/V8.8.2/coq-8.8.2-installer-windows-i686.exe",
"hash": "ccc220d0f7425dbfde2bc825e9a3d0c51d9fa1aa907a573de0b9b6bfa00236ef"
}
},
"installer": {
"args": [
"/S",
"/D=$dir"
]
},
"uninstaller": {
"file": "Uninstall.exe",
"args": "/S"
},
"env_add_path": "bin",
"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"
},
"32bit": {
"url": "https://github.com/coq/coq/releases/download/V$version/coq-$version-installer-windows-i686.exe"
}
}
}
}