summaryrefslogtreecommitdiff
path: root/pcr-testing/qt5-styleplugins/install.sh
diff options
context:
space:
mode:
authorbill-auger <mr.j.spam.me@gmail.com>2019-03-29 00:14:45 -0400
committerbill-auger <mr.j.spam.me@gmail.com>2019-03-29 00:29:07 -0400
commit29b4be040f9f1c8d410a3174853236216decf199 (patch)
tree07038dbfa9f44a6d8896a0db4182d9cb3512b95e /pcr-testing/qt5-styleplugins/install.sh
parent18eccaaf03572a88143cc1dd9f8e5091b8dcbcc9 (diff)
downloadabslibre-29b4be040f9f1c8d410a3174853236216decf199.tar.gz
abslibre-29b4be040f9f1c8d410a3174853236216decf199.tar.bz2
abslibre-29b4be040f9f1c8d410a3174853236216decf199.zip
[qt5-styleplugins]: add package removed from community
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
+}