The easiest way to do this is to compile from the source code the Pidgin dev's provide at their site. Contrary to popular opinion, it's actually not that hard at all to compile something from source, as long as Ubuntu's package manager has a list of packages that the program is dependent on (in Pidgin's case, we just use Gaim's dependencies, since they are the same program). That way, you can get the newest version of Pidgin, instead of being stuck with an old version, which is what most of the repositories have.
1. You run
Code:
sudo apt-get build-dep gaim
to satisfy all dependencies for compiling Pidgin.
2. You download the source code from
http://www.pidgin.im/
3. Open a terminal, cd to the directory that contains the Pidgin tarball and do
4. cd to the extracted Pidgin folder and run
5. Run
6. Run
7. Now you can launch Pidgin from the command line with
or by doing Alt+F2 and typing in "pidgin"
8. For those of you that want an icon in the GNOME panel/KMenu, copy the pidgin.desktop file from the extracted pidgin archive to /usr/share/applications
You can do this for any software that you want to update, but isn't available in the repositories yet. Unfortunately, compiling code like this without being able to use the build-dep command to satisfy all dependencies can make it nearly impossible to successfully complete, so if there isn't at least an older version of a program available in the repositories to build-dep with, you're going to have a hell of a time getting the configure script to work.
Bookmarks