Skip to content

Instantly share code, notes, and snippets.

@napoli1890
Forked from Zauberfisch/install-wkhtml2pdf.sh
Last active February 5, 2016 17:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save napoli1890/3b9b19f123fc4dc8befd to your computer and use it in GitHub Desktop.
Save napoli1890/3b9b19f123fc4dc8befd to your computer and use it in GitHub Desktop.
Install wkhtml2pdf on Ubuntu Trusty 64bit (14.04 LTS) with patched QT
# I managed to get the compiled version with patched QT working on ubuntu precise 64bit (12.04 LTS) and thought I'd share my bash history in the hopes it might spare others some trouble shooting.
# Also note that this install process takes rather long, you might want to consider running it in a screen or something
# you will be needing git if you haven't got it yet
sudo apt-get install git-core
# as per installation instructions, install dependencies for wkhtmltopdf
sudo apt-get install openssl build-essential xorg libssl-dev libxrender-dev
# clone the repo
git clone git://github.com/antialize/wkhtmltopdf.git wkhtmltopdf
# install qt dependencies, see http://qt-project.org/doc/qt-4.8/requirements-x11.html
sudo apt-get install libfontconfig1-dev libfreetype6-dev libx11-dev libxcursor-dev libxext-dev libxfixes-dev libxft-dev libxi-dev libxrandr-dev libxrender-dev
# get qt
git clone https://qt.gitorious.org/qt/antializes-qt.git wkhtmltopdf-qt
cd wkhtmltopdf-qt
git checkout 4.8.4
QTDIR=. ./bin/syncqt
# important here is to note that the -nomake arguments are in quotes as andrei mentioned in the comments before
./configure -nomake "tools examples demos docs translations" -opensource -prefix ../wkqt
# if make fails because you have no Makefile, then something in configure went wrong, check the output for clues
make -j3 && make install
# installing wkhtmltopdf
cd ../wkhtmltopdf
# now, run qmake in this directory:
../wkqt/bin/qmake
# finally, make wkhtmltopdf (if you get permission errors, run make and make install as sudo)
make && make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment