forked from ScoopInstaller/Scoop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
haskell.json
47 lines (47 loc) · 1.53 KB
/
haskell.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
45
46
47
{
"homepage": "https://www.haskell.org",
"version": "8.0.2",
"architecture": {
"64bit": {
"url": "https://haskell.org/platform/download/8.0.2/HaskellPlatform-8.0.2-minimal-x86_64-setup.exe",
"hash": "5901fddb219a4d864ee3e21dc73434de0eeb98cbd27a50845b8a687e1c1cb8fa"
},
"32bit": {
"url": "https://haskell.org/platform/download/8.0.2/HaskellPlatform-8.0.2-minimal-i386-setup.exe",
"hash": "5be3feaf90977bbe769753c8295cafef40591c8f247808cf6b662ebab2839738"
}
},
"installer": {
"args": "/S /D=$dir"
},
"uninstaller": {
"file": "Uninstall.exe",
"args": "/S"
},
"bin": [
"bin\\ghc.exe",
"bin\\ghci.exe",
"bin\\ghc-pkg.exe",
"bin\\haddock.exe",
"bin\\hp2ps.exe",
"bin\\hpc.exe",
"bin\\hsc2hs.exe",
"bin\\runghc.exe",
"bin\\runhaskell.exe",
"lib\\extralibs\\bin\\cabal.exe"
],
"checkver": {
"url": "https://www.haskell.org/platform/windows.html",
"re": "The latest version of the Haskell Platform for Windows is\\s+<strong>([\\d.]+)<\\/strong>"
},
"autoupdate": {
"architecture": {
"64bit": {
"url": "https://haskell.org/platform/download/$version/HaskellPlatform-$version-minimal-x86_64-setup.exe"
},
"32bit": {
"url": "https://haskell.org/platform/download/$version/HaskellPlatform-$version-minimal-i386-setup.exe"
}
}
}
}