Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/vcpkg/get_mumble_dependencies.sh')
-rw-r--r--scripts/vcpkg/get_mumble_dependencies.sh102
1 files changed, 102 insertions, 0 deletions
diff --git a/scripts/vcpkg/get_mumble_dependencies.sh b/scripts/vcpkg/get_mumble_dependencies.sh
new file mode 100644
index 000000000..e46f0d917
--- /dev/null
+++ b/scripts/vcpkg/get_mumble_dependencies.sh
@@ -0,0 +1,102 @@
+#!/bin/bash
+
+# Copyright 2020 The 'mumble-releng-experimental' Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that
+# can be found in the LICENSE file in the source tree or at
+# <http://mumble.info/mumble-releng-experimental/LICENSE>.
+
+# Helper function to check if a certain parameter has been passed to the script
+has_option() {
+ local desiredOption="$1"
+ shift
+ for currentOption in "$@"; do
+ if [[ $currentOption == "$desiredOption" ]]; then
+ return 0
+ fi
+ done
+ return 1
+}
+
+if ! has_option '--auto' "$@"
+ then
+ # Make sure the command-prompt stays open if an error is encountered so that the user can read
+ # the error message before the console closes.
+ # If you run call this script as part of some automation, you'll want to pass --auto
+ # to make sure you don't get stuck.
+ trap "printf '\n\n'; read -p 'ERROR encountered... Press Enter to exit'" ERR
+fi
+
+# On failed command (error code) exit the whole script
+set -e
+# Treat using unset variables as errors
+set -u
+# For piped commands on command failure fail entire pipe instead of only the last command being significant
+set -o pipefail
+
+VCPKGDIR=~/vcpkg
+
+mumble_deps='qt5-base,
+ qt5-svg,
+ qt5-tools,
+ grpc,
+ boost-accumulators,
+ opus,
+ poco,
+ libvorbis,
+ libogg,
+ libflac,
+ libsndfile,
+ libmariadb,
+ zlib,
+ zeroc-ice'
+
+# Determine vcpkg triplet from OS https://github.com/Microsoft/vcpkg/blob/master/docs/users/triplets.md
+# Available triplets can be printed with `vcpkg help triplet`
+case "$OSTYPE" in
+ msys* ) triplet='x64-windows-static-md'
+ xcompile_triplet='x86-windows-static-md'
+ ;;
+ linux-gnu* ) triplet='x64-linux';;
+ darwin* ) triplet='x64-osx';;
+ * ) echo "The OSTYPE is either not defined or unsupported. Aborting...";;
+esac
+
+if [ ! -d "$VCPKGDIR" ]
+ then
+ git clone https://github.com/Microsoft/vcpkg.git $VCPKGDIR
+fi
+
+if [ -d "$VCPKGDIR" ]
+ then
+ # copy ZeroC Ice port files
+ cp -R helpers/vcpkg/ports/zeroc-ice $VCPKGDIR/ports
+ cd $VCPKGDIR
+
+ if [ ! -x $VCPKGDIR/vcpkg ]
+ then
+ case "$OSTYPE" in
+ msys* ) ./bootstrap-vcpkg.bat -disableMetrics
+ ;;
+ * ) bash bootstrap-vcpkg.sh -disableMetrics
+ ;;
+ esac
+ fi
+
+ if [ -z "$triplet" ]
+ then
+ echo "Triplet type is not defined! Aborting..."
+ else
+ if [ $OSTYPE == msys ]
+ then
+ # install dns-sd provider
+ ./vcpkg install mdnsresponder icu --triplet $triplet
+ ./vcpkg install boost-optional:$xcompile_triplet --clean-after-build
+ fi
+ for dep in ${mumble_deps//,/ }
+ do
+ ./vcpkg install $dep:$triplet --clean-after-build
+ done
+ fi
+else
+ echo "Failed to retrieve the 'vcpkg' repository! Aborting..."
+fi