Bundle image format and input context plugins with AppImage

This commit is contained in:
Janek Bevendorff 2018-02-27 02:39:54 +01:00 committed by Jonathan White
parent cc3cc35565
commit c1a397e624
2 changed files with 4 additions and 1 deletions

View File

@ -62,7 +62,9 @@ if [ "$QXCB_PLUGIN" == "" ]; then
fi
QT_PLUGIN_PATH="$(dirname $(dirname $QXCB_PLUGIN))"
mkdir -p ".${QT_PLUGIN_PATH}/platforms"
cp "$QXCB_PLUGIN" ".${QT_PLUGIN_PATH}/platforms/"
cp -a "$QXCB_PLUGIN" ".${QT_PLUGIN_PATH}/platforms/"
cp -a "${QT_PLUGIN_PATH}/platforminputcontexts/" ".${QT_PLUGIN_PATH}/platforminputcontexts/"
cp -a "${QT_PLUGIN_PATH}/imageformats/" ".${QT_PLUGIN_PATH}/imageformats/"
get_apprun
copy_deps

View File

@ -47,6 +47,7 @@ RUN set -x \
qt${QT5_VERSION}tools \
qt${QT5_VERSION}x11extras \
qt${QT5_VERSION}translations \
qt${QT5_VERSION}imageformats \
zlib1g-dev \
libxi-dev \
libxtst-dev \