Skip to content

Instantly share code, notes, and snippets.

@gruntruk
Last active December 16, 2015 20:19
Show Gist options
  • Save gruntruk/5491965 to your computer and use it in GitHub Desktop.
Save gruntruk/5491965 to your computer and use it in GitHub Desktop.
Installs QT4.8 from source on Ubuntu to allow capybara-webkit to install
wget http://download.qt-project.org/official_releases/qt/4.8/4.8.4/qt-everywhere-opensource-src-4.8.4.tar.gz
tar xvf qt-everywhere-opensource-src-4.8.4.tar.gz
cd qt-everywhere-opensource-src-4.8.4
./configure --prefix=/usr -webkit -debug-and-release -opensource -developer-build -nomake examples -nomake demos -nomake docs -fast
# wait for a while... though not as long as with the full build by a long shot
make && sudo make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment