Skip to content

Instantly share code, notes, and snippets.

@Kakadu
Last active June 21, 2019 21:22
Show Gist options
  • Save Kakadu/7dc6f7c9f8760f7fbace to your computer and use it in GitHub Desktop.
Save Kakadu/7dc6f7c9f8760f7fbace to your computer and use it in GitHub Desktop.
Script to install Qt 5.2.1 on Ubuntu 12.04 LTS
#!/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
@bweir
Copy link

bweir commented Jan 16, 2015

This is a lifesaver for Travis CI!

@vladimir-shcherbakov
Copy link

Travis refuses to install QT packages from trusty repo. What did I miss?

@frantic1048
Copy link

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