Comment 6 for bug 271550

Revision history for this message
hyper_ch (bugs-launchpad-net-roleplayer) wrote :

I wrote this little script below to fetch the missing 32-bit libs and unpack them to the right place (run it as sudo):

#!/bin/bash

mkdir /tmp/skype
mkdir /tmp/skype/tmp
cd /tmp/skype

wget http://mirror.switch.ch/ftp/mirror/ubuntu/pool/main/q/qt4-x11/libqtgui4_4.4.1-0ubuntu2_i386.deb
wget http://mirror.switch.ch/ftp/mirror/ubuntu/pool/main/q/qt4-x11/libqt4-network_4.4.1-0ubuntu2_i386.deb
wget http://mirror.switch.ch/ftp/mirror/ubuntu/pool/main/q/qt4-x11/libqtcore4_4.4.1-0ubuntu2_i386.deb
wget http://mirror.switch.ch/ftp/mirror/ubuntu/pool/main/q/qt4-x11/libqt4-xml_4.4.1-0ubuntu2_i386.deb

dpkg -x libqtgui4_4.4.1-0ubuntu2_i386.deb /tmp/skype/tmp
dpkg -x libqt4-network_4.4.1-0ubuntu2_i386.deb /tmp/skype/tmp
dpkg -x libqtcore4_4.4.1-0ubuntu2_i386.deb /tmp/skype/tmp
dpkg -x libqt4-xml_4.4.1-0ubuntu2_i386.deb /tmp/skype/tmp

cp -a /tmp/skype/tmp/usr/lib/* /usr/lib32/