Skip to content

Instantly share code, notes, and snippets.

@rming
Created February 23, 2020 11:40
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 rming/0f465b97ada1566bb78cad511af43938 to your computer and use it in GitHub Desktop.
Save rming/0f465b97ada1566bb78cad511af43938 to your computer and use it in GitHub Desktop.
build poppler-0.85 on ubuntu 18.04
#
## poppler
#
# dependences
sudo apt-get install build-essential cmake libfreetype6-dev libfontconfig1-dev libnss3-dev libjpeg-dev libcairo2-dev libopenjp2-7-dev libsignon-qt5-dev libgirepository1.0-dev libcurlpp-dev libtiff-dev liblcms2-dev libboost-dev libcurl4-openssl-dev libfuzzy-dev
# get soruce code
wget https://poppler.freedesktop.org/poppler-0.85.0.tar.xz
# extract
tar xvf poppler-0.85.0.tar.xz
# make config
cd poppler-0.85.0
mkdir build
cd build
cmake ..
# make && make install
make
make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment