summaryrefslogtreecommitdiff
path: root/pcr-testing/qt5-styleplugins/install.sh
diff options
context:
space:
mode:
authorbill-auger <mr.j.spam.me@gmail.com>2020-11-23 22:52:53 -0500
committerbill-auger <mr.j.spam.me@gmail.com>2020-11-23 23:04:45 -0500
commitad36e765afec78a9a490432cd1fed9938dbf10a5 (patch)
treef4a4d0a6b7bd6db6cf3b15b47b03573bb81603d0 /pcr-testing/qt5-styleplugins/install.sh
parentb0ef492015e7338079d1eeba8a78ae473aab40fd (diff)
downloadabslibre-ad36e765afec78a9a490432cd1fed9938dbf10a5.tar.gz
abslibre-ad36e765afec78a9a490432cd1fed9938dbf10a5.tar.bz2
abslibre-ad36e765afec78a9a490432cd1fed9938dbf10a5.zip
[qt5-styleplugins]: move to libre - rebuild agianst latest QT5
Diffstat (limited to 'pcr-testing/qt5-styleplugins/install.sh')
-rw-r--r--pcr-testing/qt5-styleplugins/install.sh30
1 files changed, 0 insertions, 30 deletions
diff --git a/pcr-testing/qt5-styleplugins/install.sh b/pcr-testing/qt5-styleplugins/install.sh
deleted file mode 100644
index 2951b24a4..000000000
--- a/pcr-testing/qt5-styleplugins/install.sh
+++ /dev/null
@@ -1,30 +0,0 @@
-_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
-}
-
-post_install()
-{
- echo "Remember to set QT_QPA_PLATFORMTHEME:"
- echo " $ export QT_QPA_PLATFORMTHEME=gtk2"
- echo "... or to make this selectable with qt5ct:"
- echo " $ export QT_QPA_PLATFORMTHEME=qt5ct"
- echo "and ensure that QT_STYLE_OVERRIDE is not set:"
- echo " $ unexport QT_STYLE_OVERRIDE"
-}