mono: Add 64bit installer (#3322)

This commit is contained in:
Hsiao-nan Cheung 2019-04-11 20:18:02 +08:00 committed by Richard Kuhnt
parent cb3bc0fcb3
commit 8494f1bed5

View File

@ -3,8 +3,16 @@
"description": "Cross platform, open source .NET framework.",
"homepage": "https://www.mono-project.com/",
"license": "MIT",
"url": "https://download.mono-project.com/archive/5.18.1/windows-installer/mono-5.18.1.3-gtksharp-2.12.45-win32-0.msi",
"hash": "c2dbda052aa8adfa89e38b99f1eda293b22fbcd8401a047535c5a2710aa5ea8c",
"architecture": {
"64bit": {
"url": "https://download.mono-project.com/archive/5.18.1/windows-installer/mono-5.18.1.3-x64-0.msi",
"hash": "ac6ace744864f4232c3d78dda45ad47559fd99fc7719f18e3fe8ce528953874a"
},
"32bit": {
"url": "https://download.mono-project.com/archive/5.18.1/windows-installer/mono-5.18.1.3-gtksharp-2.12.45-win32-0.msi",
"hash": "c2dbda052aa8adfa89e38b99f1eda293b22fbcd8401a047535c5a2710aa5ea8c"
}
},
"extract_dir": "Mono",
"env_add_path": "bin",
"checkver": {
@ -12,6 +20,19 @@
"re": "(?<short>[\\d.]+)/windows-installer/(?<file>mono-(?<version>[\\d.]+).*win32.*).msi"
},
"autoupdate": {
"url": "https://download.mono-project.com/archive/$matchShort/windows-installer/$matchFile.msi"
"architecture": {
"64bit": {
"url": "https://download.mono-project.com/archive/$matchShort/windows-installer/mono-$version-x64-0.msi"
},
"32bit": {
"url": "https://download.mono-project.com/archive/$matchShort/windows-installer/$matchFile.msi"
}
}
},
"suggest": {
"vcredist": [
"extras/vcredist2013",
"extras/vcredist2015"
]
}
}