pdf2htmlEX/buildScripts/getDevLibrariesAlpine

29 lines
737 B
Plaintext
Raw Permalink Normal View History

#!/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 \
2020-06-20 15:54:37 +00:00
cairo-dev \
libpng-dev \
2020-06-20 15:05:01 +00:00
freetype-dev \
2020-06-20 15:17:03 +00:00
gettext-dev \
2020-06-20 15:38:46 +00:00
glib-dev \
2020-06-20 15:09:23 +00:00
fontconfig-dev \
libjpeg-turbo-dev \
libxml2-dev