mirror of
git://code.qt.io/qt/qt5.git
synced 2026-02-01 19:36:04 +08:00
Vcpkg needs a newer 7zip, and although it can automatically download, install and use a newer version, it is better and safer if we can provide the newer 7zip, and satisfy this requirement. Change-Id: If9eda0cb6e2a884647a41572e18f9814cb48e0a0 Reviewed-by: Alexey Edelev <alexey.edelev@qt.io>
34 lines
979 B
PowerShell
34 lines
979 B
PowerShell
# Copyright (C) 2017 The Qt Company Ltd.
|
|
# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
|
|
|
. "$PSScriptRoot\helpers.ps1"
|
|
|
|
# This script installs 7-Zip
|
|
|
|
$version = "23.01"
|
|
$nonDottedVersion = "2301"
|
|
|
|
if (Is64BitWinHost) {
|
|
$arch = "-x64"
|
|
$sha1 = "7DF28D340D7084647921CC25A8C2068BB192BDBB"
|
|
} else {
|
|
$arch = ""
|
|
$sha1 = "D5D00E6EA8B8E68CE7A704FD478DC950E543C25C"
|
|
}
|
|
|
|
$url_cache = "\\ci-files01-hki.ci.qt.io\provisioning\windows\7z" + $nonDottedVersion + $arch + ".exe"
|
|
$url_official = "http://www.7-zip.org/a/7z" + $nonDottedVersion + $arch + ".exe"
|
|
$7zPackage = "C:\Windows\Temp\7zip-$nonDottedVersion.exe"
|
|
$7zTargetLocation = "C:\Utils\sevenzip\"
|
|
|
|
Download $url_official $url_cache $7zPackage
|
|
Verify-Checksum $7zPackage $sha1
|
|
Run-Executable $7zPackage "/S","/D=$7zTargetLocation"
|
|
|
|
Write-Host "Cleaning $7zPackage.."
|
|
Remove "$7zPackage"
|
|
|
|
Add-Path $7zTargetLocation
|
|
|
|
Write-Output "7-Zip = $version" >> ~\versions.txt
|