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

get_mumble_dependencies.sh « vcpkg « scripts - github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ad37c6f547c3826724b9f335caa02de846dc84df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
#!/bin/bash

# Copyright 2020-2021 The Mumble Developers. All rights reserved.
# Use of this source code is governed by a BSD-style license
# that can be found in the LICENSE file at the root of the
# Mumble source tree or at <https://www.mumble.info/LICENSE>.


# 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