Now that we support OIIO 1.x, we don't need to use a PPA to install OIIO 2.x on Xenial. The advantage of this is: 1. Not having to maintain an OIIO PPA. 2. Not messing up anyone's system if they have software installed that's been linked with OIIO 1.x and then are forced to install over it with OIIO 2.x.
13 lines
492 B
Bash
13 lines
492 B
Bash
#!/bin/bash
|
|
|
|
if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
|
|
|
|
export PATH="/usr/local/opt/qt/bin:/usr/local/opt/python@2/libexec/bin:$PATH"
|
|
|
|
elif [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
|
|
|
|
sudo apt-get -y -o Dpkg::Options::="--force-overwrite" install qt511base qt511multimedia qt511svg qt511tools libavformat-dev libavcodec-dev libavfilter-dev libavutil-dev libswscale-dev libswresample-dev cmake libopencolorio-dev libopenimageio-dev libgl1-mesa-dev
|
|
source /opt/qt*/bin/qt*-env.sh
|
|
|
|
fi
|