Skip to content

Instantly share code, notes, and snippets.

@wbchn
Created September 13, 2016 06:39
Show Gist options
  • Save wbchn/97729c3ffb7189295097f28eba0f0741 to your computer and use it in GitHub Desktop.
Save wbchn/97729c3ffb7189295097f28eba0f0741 to your computer and use it in GitHub Desktop.
Install pidgin from source

Install pidgin from source

$ sudo apt-get install build-essential intltool
$ sudo wget http://sourceforge.net/projects/pidgin/files/Pidgin/2.10.12/pidgin-2.10.12.tar.bz2
$ sudo tar -xjvf pidgin-2.10.12.tar.bz2
$ cd pidgin-2.10.12
$ sudo ./configure

# configure: error: GLib 2.16.0, run below command #
$ sudo apt-get build-dep pidgin
$ sudo ./configure
$ sudo make
$ sudo make install

# Launch #
$ pidgin

# Remove pidgin #
$ sudo make uninstall

from www

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment