mirror of
https://github.com/pdf2htmlEX/pdf2htmlEX.git
synced 2024-12-22 13:00:08 +00:00
15 lines
269 B
Plaintext
15 lines
269 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
# This bash script automates the getting of the development libraries
|
||
|
# required to build poppler and fontforge
|
||
|
|
||
|
sudo apt install \
|
||
|
libcairo-dev \
|
||
|
libspiro-dev \
|
||
|
libpng-dev \
|
||
|
libjpeg-dev \
|
||
|
poppler-data \
|
||
|
libpango1.0-dev \
|
||
|
liblcms2-dev
|
||
|
|