aboutsummaryrefslogtreecommitdiffstats
path: root/coin/provisioning/common/macos/pkgconfig.sh
blob: 5b84982113695685077b477c541debd69972445a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/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

# Install pkgconfig
set -ex

source "${BASH_SOURCE%/*}/../unix/SetEnvVar.sh"
brew install pkgconfig
read -r -a arr <<< "$(brew list --versions pkgconfig)"
version=${arr[1]}
echo "pkgconfig = $version" >> ~/versions.txt