mirror of
https://github.com/pdf2htmlEX/pdf2htmlEX.git
synced 2024-12-22 04:50:09 +00:00
29 lines
737 B
Bash
Executable File
29 lines
737 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# This shell script automates getting the development libraries required to
|
|
# build poppler and fontforge
|
|
|
|
# set the shell environment variable 'UNATTENDED' to '--assume-yes' for
|
|
# unattended use (for example in the .travis.yml script)
|
|
|
|
echo ""
|
|
echo "-------------------------------------------------------------------"
|
|
echo "INSTALLING development libraries (using APK on Alpine)"
|
|
echo "-------------------------------------------------------------------"
|
|
echo ""
|
|
|
|
set -ev
|
|
|
|
sudo apk update
|
|
sudo apk add \
|
|
gettext \
|
|
gnu-libiconv-dev \
|
|
cairo-dev \
|
|
libpng-dev \
|
|
freetype-dev \
|
|
gettext-dev \
|
|
glib-dev \
|
|
fontconfig-dev \
|
|
libjpeg-turbo-dev \
|
|
libxml2-dev
|