From c1a397e624d0fefc28321e3adf8b7ee26cc1ba0f Mon Sep 17 00:00:00 2001 From: Janek Bevendorff Date: Tue, 27 Feb 2018 02:39:54 +0100 Subject: [PATCH] Bundle image format and input context plugins with AppImage --- AppImage-Recipe.sh | 4 +++- Dockerfile | 1 + 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/AppImage-Recipe.sh b/AppImage-Recipe.sh index da3830144..9975f4939 100755 --- a/AppImage-Recipe.sh +++ b/AppImage-Recipe.sh @@ -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 diff --git a/Dockerfile b/Dockerfile index f9ff0cd1e..cee347e69 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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 \