Last active
December 16, 2015 20:19
-
-
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
This file contains hidden or 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
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