mirror of https://github.com/qt/qt5.git
28 lines
837 B
Bash
Executable File
28 lines
837 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Copyright (C) 2024 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
|
|
|
|
|
|
source "${BASH_SOURCE%/*}/../unix/InstallFromCompressedFileFromURL.sh"
|
|
# version 0.18.0 doesn't work correctly for Android binaries, so we use 0.17.2
|
|
patchelf_version="0.17.2"
|
|
|
|
url_cached="https://ci-files01-hki.ci.qt.io/input/android/patchelf/$patchelf_version.tar.gz"
|
|
url_public="https://github.com/NixOS/patchelf/archive/refs/tags/$patchelf_version.tar.gz"
|
|
sha1="ddd46a2e2a16a308245c008721d877455b23bba8"
|
|
|
|
target_source_dir="$HOME/patchelf-$patchelf_version"
|
|
|
|
if [ ! -d "$target_source_dir" ]; then
|
|
InstallFromCompressedFileFromURL "$url_cached" "$url_public" "$sha1" "$HOME" ""
|
|
fi
|
|
|
|
pushd "$target_source_dir"
|
|
|
|
./bootstrap.sh
|
|
./configure
|
|
make
|
|
sudo make install
|
|
|
|
popd
|