-
-
Notifications
You must be signed in to change notification settings - Fork 973
/
mingw.json
36 lines (36 loc) · 1.64 KB
/
mingw.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
{
"version": "14.2.0-rt_v12-rev0",
"description": "Minimalistic GNU for Windows is a runtime environment for GCC, GDB, make and related binutils.",
"homepage": "https://www.mingw-w64.org",
"license": "ZPL-2.1",
"architecture": {
"64bit": {
"url": "https://github.com/niXman/mingw-builds-binaries/releases/download/14.2.0-rt_v12-rev0/x86_64-14.2.0-release-posix-seh-ucrt-rt_v12-rev0.7z",
"hash": "0f1afc3b48f66dda68fbfb7b8b0f1d22b831396fbe1e3dea776745f32d930b24",
"extract_dir": "mingw64"
},
"32bit": {
"url": "https://github.com/niXman/mingw-builds-binaries/releases/download/14.2.0-rt_v12-rev0/i686-14.2.0-release-posix-dwarf-ucrt-rt_v12-rev0.7z",
"hash": "8af0dbb6a36ff4dd9c6710f1d9f464cc341b81db7da1c872418a382acc02c3b4",
"extract_dir": "mingw32"
}
},
"post_install": "Copy-Item \"$dir\\bin\\mingw32-make.exe\" \"$dir\\bin\\make.exe\"",
"env_add_path": "bin",
"checkver": {
"url": "https://api.github.com/repos/niXman/mingw-builds-binaries/releases",
"jsonpath": "$..tag_name",
"regex": "([\\d.]+)-(?<build>[a-z0-9_\\-]+)",
"replace": "${1}-${build}"
},
"autoupdate": {
"architecture": {
"64bit": {
"url": "https://github.com/niXman/mingw-builds-binaries/releases/download/$version/x86_64-$match1-release-posix-seh-ucrt-$matchBuild.7z"
},
"32bit": {
"url": "https://github.com/niXman/mingw-builds-binaries/releases/download/$version/i686-$match1-release-posix-dwarf-ucrt-$matchBuild.7z"
}
}
}
}