skype: use 32 bit Qt plugins

Without this, Qt looks for plugins in /usr/lib/qt/plugins, which are 64
bit. In turn, Skype can't display profile pictures.
This commit is contained in:
Dominik Honnef 2015-10-04 03:17:36 +02:00
parent d588177366
commit 5d5f66fed0
2 changed files with 2 additions and 1 deletions

View file

@ -3,6 +3,7 @@
MACHINE=$(uname -m) MACHINE=$(uname -m)
if [ "$MACHINE" = "x86_64" ]; then if [ "$MACHINE" = "x86_64" ]; then
export LD_LIBRARY_PATH=/usr/lib32 export LD_LIBRARY_PATH=/usr/lib32
export QT_PLUGIN_PATH=/usr/lib32/qt/plugins
fi fi
PULSE_LATENCY_MSEC=30 exec /usr/lib32/skype/skype "$@" PULSE_LATENCY_MSEC=30 exec /usr/lib32/skype/skype "$@"

View file

@ -1,7 +1,7 @@
# Template file for 'skype' # Template file for 'skype'
pkgname=skype pkgname=skype
version=4.3.0.37 version=4.3.0.37
revision=3 revision=4
short_desc="P2P software for high-quality voice communication" short_desc="P2P software for high-quality voice communication"
maintainer="Juan RP <xtraeme@voidlinux.eu>" maintainer="Juan RP <xtraeme@voidlinux.eu>"
homepage="http://www.skype.com" homepage="http://www.skype.com"