diff options
author | Brad King <brad.king@kitware.com> | 2021-03-30 11:52:36 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2021-04-05 17:43:51 (GMT) |
commit | 0237eba318b52720f07b69c3d5df0fcb90c75c66 (patch) | |
tree | 534cc3c97d1da870df96e1c01112de691e3e6177 /Utilities/Release/files-v1.json.in | |
parent | fc9c1d83bf23852bfeb280aac2890b5b3fc94414 (diff) | |
download | CMake-0237eba318b52720f07b69c3d5df0fcb90c75c66.zip CMake-0237eba318b52720f07b69c3d5df0fcb90c75c66.tar.gz CMake-0237eba318b52720f07b69c3d5df0fcb90c75c66.tar.bz2 |
Utilities/Release: Add script to generate a table of files
Fixes: #22002
Diffstat (limited to 'Utilities/Release/files-v1.json.in')
-rw-r--r-- | Utilities/Release/files-v1.json.in | 80 |
1 files changed, 80 insertions, 0 deletions
diff --git a/Utilities/Release/files-v1.json.in b/Utilities/Release/files-v1.json.in new file mode 100644 index 0000000..8fef411 --- /dev/null +++ b/Utilities/Release/files-v1.json.in @@ -0,0 +1,80 @@ +{ + "version": { + "major": @version_major@, + "minor": @version_minor@, + "patch": @version_patch@, + @maybe_version_suffix@ + "string": "@version@" + }, + "files": [ + { + "os": ["linux", "Linux"], + "architecture": ["x86_64"], + "class": "installer", + "name": "cmake-@version@-Linux-x86_64.sh" + }, + { + "os": ["linux", "Linux"], + "architecture": ["x86_64"], + "class": "archive", + "name": "cmake-@version@-Linux-x86_64.tar.gz" + }, + { + "os": ["macos", "macOS"], + "architecture": ["x86_64"], + "class": "volume", + "name": "cmake-@version@-Darwin-x86_64.dmg", + "macOSmin": "10.7" + }, + { + "os": ["macos", "macOS"], + "architecture": ["x86_64"], + "class": "archive", + "name": "cmake-@version@-Darwin-x86_64.tar.gz", + "macOSmin": "10.7" + }, + { + "os": ["windows", "Windows"], + "architecture": ["i386"], + "class": "installer", + "name": "cmake-@version@-win32-x86.msi" + }, + { + "os": ["windows", "Windows"], + "architecture": ["i386"], + "class": "archive", + "name": "cmake-@version@-win32-x86.zip" + }, + { + "os": ["windows", "Windows"], + "architecture": ["x86_64"], + "class": "installer", + "name": "cmake-@version@-win64-x64.msi" + }, + { + "os": ["windows", "Windows"], + "architecture": ["x86_64"], + "class": "archive", + "name": "cmake-@version@-win64-x64.zip" + }, + { + "os": ["source"], + "architecture": [], + "class": "archive", + "name": "cmake-@version@.tar.gz" + }, + { + "os": ["source"], + "architecture": [], + "class": "archive", + "name": "cmake-@version@.zip" + } + ], + "hashFiles": [ + { + "algorithm": ["sha256", "SHA-256"], + "name": "cmake-@version@-SHA-256.txt", + "signature": ["cmake-@version@-SHA-256.txt.asc"] + } + ] +} |