- install all needed 32 bit libraries
apt-get install ia32-libs ia32-libs-gtk lib32asound2 lib32gcc1 lib32ncurses5 lib32stdc++6 lib32z1 linux32
- download the skype deb from
http://www.skype.com/go/getskype-linux-deb
- install it
dpkg --force-architecture -i skype-1.4.0.74.deb
- download the static version from
http://www.skype.com/go/getskype-linux-static
- unpack it
cd /usr/local/lib ; tar xjvf skype-1.4.0.74-static.tar.bz2
- download the 32 bit version of libsigc, for example from
http://http.us.debian.org/debian/pool/main/libs/libsigc++-2.0/libsigc++-2.0-0c2a_2.0.17-2_i386.deb
- unpack it and put it into the lib32 paths
dpkg-deb -x libsigc++-2.0-0c2a_2.0.17-2_i386.deb LS
mv -i LS/usr/lib/libsigc-2.0.so.0* /usr/lib32/
- put this small script in /usr/local/bin/skype
#!/bin/sh
exec linux32 /usr/local/lib/skype_static-1.4.0.74/skype
and make it executable
chmod +x /usr/local/bin/skype
- delete /usr/bin/skype and replace it with a symlink
rm /usr/bin/skype
ln -s /usr/local/bin/skype /usr/bin/skype