From b6c801389dd24ba64e965047420cd14ae21da158 Mon Sep 17 00:00:00 2001 From: BennyDioxide <80139133+BennyDioxide@users.noreply.github.com> Date: Thu, 9 Jun 2022 15:24:46 +0800 Subject: [PATCH] vcpkg: Add version 2022.05.10 (#3635) * vcpkg: Add version 2022.05.10 * vcpkg@2022.05.10: change to installer script, originally by dodorz * vcpkg@2022.05.10: Change the installer to just file * Update vcpkg.json Co-authored-by: Rashil Gandhi <46838874+rashil2000@users.noreply.github.com> --- bucket/vcpkg.json | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 bucket/vcpkg.json diff --git a/bucket/vcpkg.json b/bucket/vcpkg.json new file mode 100644 index 0000000000..83bf78f439 --- /dev/null +++ b/bucket/vcpkg.json @@ -0,0 +1,29 @@ +{ + "version": "2022.05.10", + "description": "C/C++ dependency manager from Microsoft For all platforms, buildsystems, and workflows", + "homepage": "https://vcpkg.io/", + "license": "MIT", + "url": "https://github.com/microsoft/vcpkg/archive/refs/tags/2022.05.10.zip", + "hash": "2c7a883224628ba1e36a4de5d9a7a0f2420e7f54e5fa8b1a838896ee64ee56f2", + "extract_dir": "vcpkg-2022.05.10", + "installer": { + "file": "bootstrap-vcpkg.bat", + "keep": true + }, + "bin": "vcpkg.exe", + "post_install": "vcpkg integrate install", + "uninstaller": { + "script": "vcpkg integrate remove" + }, + "persist": [ + "downloads", + "installed" + ], + "checkver": { + "github": "https://github.com/microsoft/vcpkg/" + }, + "autoupdate": { + "url": "https://github.com/microsoft/vcpkg/archive/refs/tags/$version.zip", + "extract_dir": "vcpkg-$version" + } +}