forked from ScoopInstaller/Scoop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cygwin.json
60 lines (60 loc) · 1.78 KB
/
cygwin.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
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"version": "2.895",
"homepage": "https://cygwin.com/",
"description": "A large collection of GNU and Open Source tools which provide functionality similar to a Linux distribution on Windows",
"architecture": {
"64bit": {
"url": "https://cygwin.com/setup-x86_64.exe",
"hash": "01794f55fab26842c12e2a67fc218ad9c1a9201ccf0bf2fbd9f5815d6f20182f"
},
"32bit": {
"url": "https://cygwin.com/setup-x86.exe",
"hash": "3da0b1a5a14418abc8bb04bcbd475fe8cf25648526302dfee563de9e5c0b5ff2"
}
},
"autoupdate": {
"architecture": {
"64bit": {
"url": "https://cygwin.com/setup-x86_64.exe"
},
"32bit": {
"url": "https://cygwin.com/setup-x86.exe"
}
}
},
"checkver": {
"re": "<a.*href=\"/git/\\?p=cygwin-apps/setup\\.git;a=tag.*\">([\\d.]+)</a>",
"url": "https://cygwin.com/git/?p=cygwin-apps/setup.git;a=tags"
},
"bin": [
[
"root\\bin\\bash.exe",
"cygwin",
"--login -i"
]
],
"installer": {
"args": [
"--no-admin",
"--no-desktop",
"--local-package-dir $dir\\packages",
"--packages default,lynx,wget",
"--quiet-mode",
"--root $dir\\root",
"--site https://mirrors.kernel.org/sourceware/cygwin/"
],
"keep": true
},
"notes": "To start a Cygwin shell, type \"cygwin\"",
"persist": [
"packages",
"root"
],
"pre_install": "new-item -itemtype directory \"$dir\\root\"; new-item -itemtype directory \"$dir\\packages\"",
"shortcuts": [
[
"root\\Cygwin.bat",
"Cygwin"
]
]
}