1
0
mirror of https://github.com/pdf2htmlEX/pdf2htmlEX.git synced 2024-07-05 01:28:39 +00:00
pdf2htmlEX/buildScripts/createAppImage

73 lines
1.9 KiB
Plaintext
Raw Normal View History

2019-11-22 12:08:20 +00:00
#!/bin/bash
# This bash script creates an AppImage for pdf2htmlEX
2019-11-28 12:04:22 +00:00
source ./buildScripts/reSourceVersionEnvs
2019-11-22 12:08:20 +00:00
echo ""
echo "-------------------------------------------------------------------"
echo "CREATING pdf2htmlEX AppImage"
echo "-------------------------------------------------------------------"
echo ""
2020-06-02 11:58:27 +00:00
set -ev
2019-11-26 13:41:13 +00:00
# For appimage output plugin
#
#export VERSION="$PDF2HTMLEX_BRANCH-$BUILD_TIME"
export APPIMAGE_NAME="pdf2htmlEX-$PDF2HTMLEX_BRANCH-$BUILD_TIME-$BUILD_DIST-$MACHINE_ARCH.AppImage"
2019-11-29 09:43:07 +00:00
echo "export APPIMAGE_NAME=\"$APPIMAGE_NAME\"" >> buildScripts/reSourceVersionEnvs
2019-11-26 13:41:13 +00:00
2019-11-25 16:46:14 +00:00
mkdir -p imageBuild/appDir/usr/lib/
2019-11-22 12:08:20 +00:00
cd pdf2htmlEX/build
sudo rm -rf install_manifest.txt
2019-11-25 16:46:14 +00:00
make install DESTDIR=../../imageBuild/appDir
2019-11-22 12:08:20 +00:00
2019-12-17 16:01:02 +00:00
cd ../../poppler-data
2020-05-31 18:34:48 +00:00
make install \
prefix=$PDF2HTMLEX_PREFIX \
datadir=$PDF2HTMLEX_PREFIX/share/pdf2htmlEX \
DESTDIR=../imageBuild/appDir
2019-12-17 16:01:02 +00:00
cd ../imageBuild
2019-11-22 12:08:20 +00:00
# force libfontconfig into AppImage (linuxdeploy blacklists libfontconfig)
# (turned off since libfontconfig needs to be matched to the underlying
# OS's collection of fonts and /etc/fonts configuration files)
2019-11-22 17:25:05 +00:00
#
#cp /usr/lib/x86_64-linux-gnu/libfontconfig.so.1 appDir/usr/lib/
2019-11-22 17:25:05 +00:00
2019-11-23 10:25:09 +00:00
LINUX_DEPLOY_APP_IMAGE=linuxdeploy-$MACHINE_ARCH.AppImage
2019-11-22 12:08:20 +00:00
2019-11-23 10:25:09 +00:00
wget https://github.com/linuxdeploy/linuxdeploy/releases/download/continuous/$LINUX_DEPLOY_APP_IMAGE
2019-11-22 12:08:20 +00:00
2019-11-23 10:25:09 +00:00
chmod a+x $LINUX_DEPLOY_APP_IMAGE
if [ -f /.dockerenv ] ; then
# WE ARE INSIDE A DOCKER CONTAINER...
#
# We explicilty extract the appimage to a squashfs to allow it to be used
# inside Docker containers
#
./$LINUX_DEPLOY_APP_IMAGE --appimage-extract
#
LINUX_DEPLOY_APP_IMAGE=squashfs-root/AppRun
fi
2020-06-06 11:31:17 +00:00
export VERBOSE=1
export OUTPUT=$APPIMAGE_NAME
./$LINUX_DEPLOY_APP_IMAGE \
-e appDir/$PDF2HTMLEX_PREFIX/bin/pdf2htmlEX \
--create-desktop-file \
-i ../pdf2htmlEX/logo/pdf2htmlEX.svg \
--appdir=appDir \
2019-11-22 12:08:20 +00:00
--output appimage
2019-11-27 12:24:03 +00:00