forked from ScoopInstaller/Extras
-
Notifications
You must be signed in to change notification settings - Fork 0
/
autohotkey-installer.json
77 lines (77 loc) · 2.67 KB
/
autohotkey-installer.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"version": "1.1.30.01",
"license": "GPL-2.0-or-later",
"homepage": "https://www.autohotkey.com/",
"pre_install": " Write-Host 'Installing AutoHotKey with their installer and its own options ( create registry keys removed by uninstaller )' -ForegroundColor Magenta ",
"architecture": {
"64bit": {
"url": "https://github.com/Lexikos/AutoHotkey_L/releases/download/v1.1.30.01/AutoHotkey_1.1.30.01_setup.exe#/autohotkey-installer.exe",
"hash": "566eecbfee64e12d5cda0005a0e8e8812cfcee79e8956fa84ab15acad21cfe55",
"installer": {
"file": "autohotkey-installer.exe",
"args": [
"/S",
"/x64",
"/uiAccess=0",
"/IsHostApp=1",
"/D=$dir"
],
"keep": true
},
"uninstaller": {
"file": "autohotkey-installer.exe",
"args": [
"/Uninstall"
]
},
"bin": [
[
"autohotkeyu64.exe",
"autohotkey"
],
"compiler/ahk2exe.exe"
]
},
"32bit": {
"url": "https://github.com/Lexikos/AutoHotkey_L/releases/download/v1.1.30.01/AutoHotkey_1.1.30.01_setup.exe#/autohotkey-installer.exe",
"hash": "566eecbfee64e12d5cda0005a0e8e8812cfcee79e8956fa84ab15acad21cfe55",
"installer": {
"file": "autohotkey-installer.exe",
"args": [
"/S",
"/U32",
"/uiAccess=0",
"/IsHostApp=1",
"/D=$dir"
],
"keep": true
},
"uninstaller": {
"file": "autohotkey-installer.exe",
"args": [
"/Uninstall"
]
},
"bin": [
[
"autohotkeyu32.exe",
"autohotkey"
],
"compiler/ahk2exe.exe"
]
}
},
"checkver": {
"github": "https://github.com/lexikos/autohotkey_l"
},
"autoupdate": {
"architecture": {
"64bit": {
"url": "https://github.com/Lexikos/AutoHotkey_L/releases/download/v$version/AutoHotkey_$version_setup.exe#/autohotkey-installer.exe"
},
"32bit": {
"url": "https://github.com/Lexikos/AutoHotkey_L/releases/download/v$version/AutoHotkey_$version_setup.exe#/autohotkey-installer.exe"
}
}
}
}