summaryrefslogtreecommitdiff
path: root/pcr-testing/qt5-styleplugins/install.sh
diff options
context:
space:
mode:
authorbill-auger <mr.j.spam.me@gmail.com>2019-04-15 15:10:51 -0400
committerbill-auger <mr.j.spam.me@gmail.com>2019-05-04 05:29:06 -0400
commit6ececa9c8112a35803f53216dd1e4653e1bb3b7b (patch)
treed068c3235fa91f3dc4802f9f8a553e89e347950a /pcr-testing/qt5-styleplugins/install.sh
parent014ce4c4eb90c88b18f784f6b6d4696b57694afe (diff)
downloadabslibre-6ececa9c8112a35803f53216dd1e4653e1bb3b7b.tar.gz
abslibre-6ececa9c8112a35803f53216dd1e4653e1bb3b7b.tar.bz2
abslibre-6ececa9c8112a35803f53216dd1e4653e1bb3b7b.zip
[qt5-styleplugins]: restore for i686
Diffstat (limited to 'pcr-testing/qt5-styleplugins/install.sh')
-rw-r--r--pcr-testing/qt5-styleplugins/install.sh20
1 files changed, 20 insertions, 0 deletions
diff --git a/pcr-testing/qt5-styleplugins/install.sh b/pcr-testing/qt5-styleplugins/install.sh
new file mode 100644
index 000000000..dc88cad41
--- /dev/null
+++ b/pcr-testing/qt5-styleplugins/install.sh
@@ -0,0 +1,20 @@
+_5_0_0_2_changes() {
+ echo ':: Upstream added a gtk2 platform theme'
+ # shellcheck disable=SC2016
+ echo ' unexport `QT_STYLE_OVERRIDE`'
+ # shellcheck disable=SC2016
+ echo ' export `QT_QPA_PLATFORMTHEME=gtk2`'
+}
+
+post_upgrade() {
+ local versions=(
+ '5.0.0-2'
+ )
+ local version
+ for version in "${versions[@]}"; do
+ if [[ "$( vercmp "${version}" "${2}" )" -eq 1 ]]; then
+ # shellcheck disable=SC2091
+ "$( printf '_%s_changes' "${version}" | perl -p -e 's/\.|-/_/g' )"
+ fi
+ done
+}