Last active
June 21, 2019 21:22
-
-
Save Kakadu/7dc6f7c9f8760f7fbace to your computer and use it in GitHub Desktop.
Script to install Qt 5.2.1 on Ubuntu 12.04 LTS
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
sudo add-apt-repository "deb http://archive.ubuntu.com/ubuntu trusty universe" | |
sudo add-apt-repository "deb http://archive.ubuntu.com/ubuntu trusty main" | |
sudo apt-get update | |
sudo apt-get install qdbus qmlscene qt5-default qt5-qmake qtbase5-dev-tools qtchooser qtdeclarative5-dev xbitmaps xterm libqt5svg5-dev qttools5-dev qtscript5-dev qtdeclarative5-folderlistmodel-plugin qtdeclarative5-controls-plugin -y | |
Travis refuses to install QT packages from trusty repo. What did I miss?
This really helps on Travis CI, thankyuuu !! 👍
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This is a lifesaver for Travis CI!