Extract both tarballs, you will then need to compile pidgin from source. I did have to disable video and voice capabilites, that's fine for me. But if you want them you will need to find the correct libraries.
# apt-get -y remove pidgin
# apt-get -y build-dep pidgin
# ./configure --disable-vv
# make install
Now it's time to get into that SmartEar tarball. If you check out the INSTALL file you will see that you need to edit the Makefile and change the PIDGIN_SRCDIR to whatever directory you compiled pidgin in. So:
PIDGIN_SRCDIR=../whatever_directory_you_untared_to/pidgin
Then just run make install:
# make install
Done!
If you get the error : "undefined symbol: purple_theme_loader_get_type"
ReplyDeleteJust run: sudo ldconfig
to fix it.