mirror of
git://code.qt.io/qt/qt5.git
synced 2026-03-17 09:46:08 +08:00
Replace the current license disclaimer in files by a SPDX-License-Identifier. License files are organized under LICENSES directory. Pick-to: 6.5 6.6 Task-number: QTBUG-67283 Task-number: QTBUG-108364 Change-Id: If26e4d35c780db4a7982bb84872b251dad24716e Reviewed-by: Joerg Bornemann <joerg.bornemann@qt.io>
22 lines
697 B
Bash
Executable File
22 lines
697 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Copyright (C) 2020 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
|
|
|
|
# This script installs XZ-Utils
|
|
|
|
# XZ-Utils are needed for uncompressing xz-compressed files
|
|
|
|
set -ex
|
|
|
|
# shellcheck source=../common/macos/InstallPKGFromURL.sh
|
|
source "${BASH_SOURCE%/*}/../common/macos/InstallPKGFromURL.sh"
|
|
|
|
PrimaryUrl="http://ci-files01-hki.ci.qt.io/input/mac/macos_10.12_sierra/XZ.pkg"
|
|
AltUrl="http://sourceforge.net/projects/macpkg/files/XZ/5.0.7/XZ.pkg"
|
|
SHA1="f0c1f82ebcffe0bd4b8b57b6a77805db56b2de67"
|
|
DestDir="/"
|
|
|
|
InstallPKGFromURL "$PrimaryUrl" "$AltUrl" "$SHA1" "$DestDir"
|
|
|
|
echo "XZ = 5.0.7" >> ~/versions.txt
|