Last active
May 6, 2024 15:26
-
-
Save DELAGREEN/d8c2b76168d52dcbfd745fd2d06d9734 to your computer and use it in GitHub Desktop.
poppler
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 https://poppler.freedesktop.org/poppler-21.09.0.tar.xz | |
| tar -xvf poppler-21.09.0.tar.xz | |
| sudo apt-get install libnss3 libnss3-dev | |
| sudo apt-get install libcairo2-dev libjpeg-dev libgif-dev | |
| sudo apt-get install cmake libblkid-dev e2fslibs-dev libboost-all-dev libaudit-dev | |
| cd poppler-21.09.0/ | |
| mkdir build | |
| cd build/ | |
| cmake -DCMAKE_BUILD_TYPE=Release \ | |
| -DCMAKE_INSTALL_PREFIX=/usr \ | |
| -DTESTDATADIR=$PWD/testfiles \ | |
| -DENABLE_UNSTABLE_API_ABI_HEADERS=ON \ | |
| .. | |
| make | |
| sudo make install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment