mirror of
https://github.com/mumble-voip/mumble.git
synced 2025-10-26 11:19:16 +00:00
79 lines
3.1 KiB
Bash
Executable File
79 lines
3.1 KiB
Bash
Executable File
#!/bin/bash -ex
|
||
#
|
||
# Copyright 2005-2019 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>.
|
||
|
||
MUMBLE_HOST_DEB=${MUMBLE_HOST/_/-}
|
||
|
||
if [ "${TRAVIS_OS_NAME}" == "linux" ]; then
|
||
# Bump the apt http timeout to 120 seconds.
|
||
# Without this, we'd regularly get timeout errors
|
||
# from our MXE mirror on dl.mumble.info.
|
||
#
|
||
# See mumble-voip/mumble#3312 for more information.
|
||
echo 'Acquire::http::Timeout "120";' | sudo tee /etc/apt/apt.conf.d/99zzztimeout
|
||
|
||
if [ "${MUMBLE_HOST}" == "x86_64-linux-gnu" ]; then
|
||
sudo apt-get -qq update
|
||
sudo apt-get build-dep -qq mumble
|
||
sudo apt-get install libqt5sql5 libqt5sql5-sqlite qt5-default qttools5-dev qttools5-dev-tools qtbase5-dev qtbase5-dev-tools qttranslations5-l10n libqt5svg5-dev
|
||
sudo apt-get install libjack-jackd2-dev
|
||
elif [ "${MUMBLE_HOST}" == "i686-w64-mingw32" ]; then
|
||
sudo dpkg --add-architecture i386
|
||
sudo apt-get -qq update
|
||
echo "deb https://dl.mumble.info/mirror/mirror.mxe.cc/repos/apt xenial main" | sudo tee /etc/apt/sources.list.d/mxe.list
|
||
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 86B72ED9
|
||
sudo apt-get -qq update
|
||
sudo apt-get install \
|
||
wine \
|
||
mxe-${MUMBLE_HOST_DEB}.static-qtbase \
|
||
mxe-${MUMBLE_HOST_DEB}.static-qtsvg \
|
||
mxe-${MUMBLE_HOST_DEB}.static-qttools \
|
||
mxe-${MUMBLE_HOST_DEB}.static-qttranslations \
|
||
mxe-${MUMBLE_HOST_DEB}.static-boost \
|
||
mxe-${MUMBLE_HOST_DEB}.static-protobuf \
|
||
mxe-${MUMBLE_HOST_DEB}.static-sqlite \
|
||
mxe-${MUMBLE_HOST_DEB}.static-flac \
|
||
mxe-${MUMBLE_HOST_DEB}.static-ogg \
|
||
mxe-${MUMBLE_HOST_DEB}.static-vorbis \
|
||
mxe-${MUMBLE_HOST_DEB}.static-libsndfile
|
||
elif [ "${MUMBLE_HOST}" == "x86_64-w64-mingw32" ]; then
|
||
sudo dpkg --add-architecture i386
|
||
sudo apt-get -qq update
|
||
echo "deb https://dl.mumble.info/mirror/mirror.mxe.cc/repos/apt xenial main" | sudo tee /etc/apt/sources.list.d/mxe.list
|
||
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 86B72ED9
|
||
sudo apt-get -qq update
|
||
sudo apt-get install \
|
||
wine \
|
||
mxe-${MUMBLE_HOST_DEB}.static-qtbase \
|
||
mxe-${MUMBLE_HOST_DEB}.static-qtsvg \
|
||
mxe-${MUMBLE_HOST_DEB}.static-qttools \
|
||
mxe-${MUMBLE_HOST_DEB}.static-qttranslations \
|
||
mxe-${MUMBLE_HOST_DEB}.static-boost \
|
||
mxe-${MUMBLE_HOST_DEB}.static-protobuf \
|
||
mxe-${MUMBLE_HOST_DEB}.static-sqlite \
|
||
mxe-${MUMBLE_HOST_DEB}.static-flac \
|
||
mxe-${MUMBLE_HOST_DEB}.static-ogg \
|
||
mxe-${MUMBLE_HOST_DEB}.static-vorbis \
|
||
mxe-${MUMBLE_HOST_DEB}.static-libsndfile
|
||
else
|
||
exit 1
|
||
fi
|
||
elif [ "${TRAVIS_OS_NAME}" == "osx" ]; then
|
||
# We install the protobuf package via brew,
|
||
# which depends on "python@2".
|
||
#
|
||
# The build image upgraded the installed "python",
|
||
# and now "python@2" conflicts with it when trying
|
||
# to create symlinks.
|
||
#
|
||
# We don’t use the symlinked "python" installed
|
||
# by default in the image, so we unlink it to allow
|
||
# the "python@2" package to be installed without conflict.
|
||
brew update && brew unlink python && brew install qt5 libogg libvorbis flac libsndfile protobuf openssl ice
|
||
else
|
||
exit 1
|
||
fi
|