2020-06-20 09:11:30 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
# This shell script builds the complete pdf2htmlEX application LOCALLY
|
2020-07-07 18:01:43 +00:00
|
|
|
# (It does not create the AppImage or Container images)
|
2020-06-20 09:11:30 +00:00
|
|
|
|
|
|
|
# Adjust the following two environment variables to suit your needs
|
|
|
|
#
|
|
|
|
export UNATTENDED="--assume-yes"
|
|
|
|
export MAKE_PARALLEL="-j $(nproc)"
|
|
|
|
|
|
|
|
# choose one of the following...
|
|
|
|
#
|
|
|
|
# export PDF2HTMLEX_BRANCH="<<YourTagHereWithNoSpaces>>"
|
|
|
|
export PDF2HTMLEX_BRANCH="$(git rev-parse --abbrev-ref HEAD)"
|
|
|
|
|
|
|
|
# The following environment variable determines where the poppler,
|
|
|
|
# poppler-data, fontforge and pdf2htmlEX packages are installed.
|
|
|
|
# CHANGE IT TO SUIT YOUR NEEDS:
|
|
|
|
#
|
|
|
|
export PDF2HTMLEX_PREFIX=/usr/local
|
|
|
|
|
|
|
|
# Ensure all Apt packages are installed with no user interaction
|
|
|
|
#
|
|
|
|
export DEBIAN_FRONTEND=noninteractive
|
|
|
|
|
|
|
|
set -ev
|
|
|
|
|
|
|
|
################
|
|
|
|
# do the build
|
|
|
|
|
|
|
|
./buildScripts/versionEnvs
|
|
|
|
|
|
|
|
./buildScripts/reportEnvs
|
|
|
|
|
|
|
|
./buildScripts/getBuildToolsAlpine
|
|
|
|
|
|
|
|
./buildScripts/getDevLibrariesAlpine
|
|
|
|
|
|
|
|
./buildScripts/getPoppler
|
|
|
|
|
|
|
|
./buildScripts/buildPoppler
|
|
|
|
|
|
|
|
./buildScripts/getFontforge
|
|
|
|
|
|
|
|
./buildScripts/buildFontforge
|
|
|
|
|
|
|
|
./buildScripts/buildPdf2htmlEX
|
|
|
|
|
|
|
|
./buildScripts/installPdf2htmlEX
|