mirror of
https://github.com/pdf2htmlEX/pdf2htmlEX.git
synced 2024-12-22 13:00:08 +00:00
29 lines
809 B
Bash
Executable File
29 lines
809 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# This bash script automates getting the development libraries required to
|
|
# build poppler and fontforge
|
|
|
|
# set the bash environment variable 'UNATTENDED' to '--assume-yes' for
|
|
# unattended use (for example in the .travis.yml script)
|
|
|
|
echo ""
|
|
echo "-------------------------------------------------------------------"
|
|
echo "INSTALLING development libraries (using APT)"
|
|
echo " (UNATTENDED: [$UNATTENDED])"
|
|
echo "-------------------------------------------------------------------"
|
|
echo ""
|
|
|
|
sudo apt-get update
|
|
sudo apt-get $UNATTENDED install \
|
|
libcairo-dev \
|
|
libpng-dev \
|
|
libjpeg-dev \
|
|
libxml2-dev \
|
|
|
|
# libspiro-dev \
|
|
# libpango1.0-dev \
|
|
# liblcms2-dev \
|
|
# libuninameslist-dev \
|
|
# python3-dev
|
|
|