-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathxmake.json
42 lines (42 loc) · 1.48 KB
/
xmake.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
{
"version": "2.9.8",
"description": "A cross-platform build utility based on Lua",
"homepage": "https://xmake.io",
"license": "Apache-2.0",
"architecture": {
"64bit": {
"url": "https://github.com/xmake-io/xmake/releases/download/v2.9.8/xmake-v2.9.8.win64.zip",
"hash": "5ba90e491f911b86dfc53c13cd9c849ea777567075d655641ed6028fcb956e35"
},
"32bit": {
"url": "https://github.com/xmake-io/xmake/releases/download/v2.9.8/xmake-v2.9.8.win32.zip",
"hash": "c33da2b6c995d81f86d4765dcf26f725a873e610618c8d85795722b481580f14"
}
},
"extract_dir": "xmake",
"bin": [
"xmake.exe",
"xrepo.bat"
],
"checkver": {
"github": "https://github.com/xmake-io/xmake"
},
"autoupdate": {
"architecture": {
"64bit": {
"url": "https://github.com/xmake-io/xmake/releases/download/v$version/xmake-v$version.win64.zip",
"hash": {
"url": "$baseurl/xmake-v$version.win64.sha256",
"regex": "$sha256.*?zip"
}
},
"32bit": {
"url": "https://github.com/xmake-io/xmake/releases/download/v$version/xmake-v$version.win32.zip",
"hash": {
"url": "$baseurl/xmake-v$version.win32.sha256",
"regex": "$sha256.*?zip"
}
}
}
}
}