mirror of
git://code.qt.io/qt/qt5.git
synced 2026-04-25 22:27:49 +08:00
The script will install custom package, which is known to match with pyside requirements. Change-Id: I28ff7877ef1bba50f8d32007af87e70c0ddc398a Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
10 lines
346 B
Bash
Executable File
10 lines
346 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
BASEDIR=$(dirname "$0")
|
|
. $BASEDIR/../common/sw_versions.txt
|
|
VERSION=$libclang_version
|
|
URL="https://download.qt.io/development_releases/prebuilt/libclang/libclang-release_${VERSION//\./}-linux-Rhel7.2-gcc5.3-x86_64.7z"
|
|
SHA1="bbdbbc0296f42310077539b7247d285386119ef4"
|
|
|
|
$BASEDIR/../common/libclang.sh "$URL" "$SHA1" "$VERSION"
|