how to install pidgin

use this script to install pidgin 2.7.11 from source .. in just two minutes....


save this script pidgin.sh   aur make it executable by typing "chmod x pidgin.sh "

and run this script... as root ..
#!bin bash
echo this is script for installing pidgin..

#Install intltool for the compile, gtkspell for spelling and perl-dev for scripts
apt-get install intltool libgtkspell-dev libperl-dev


#Make our working dir's
mkdir /tmp/pidgin_shit && cd /tmp/pidgin_shit


#Download and extract
wget http://sourceforge.net/projects/pidgin/files/Pidgin/2.7.11/pidgin-2.7.11.tar.bz2
tar xvf pidgin-2.7.9.tar.bz2
cd pidgin-2.7.9


#Compile it, if you dont want perl use --disable-perl
./configure --disable-screensaver --disable-startup-notification \
--disable-gstreamer --disable-vv --disable-meanwhile --disable-avahi \
--disable-dbus --disable-tcl --prefix=/usr
make
make install


#Down and install microblog for twitter
cd ..
wget http://microblog-purple.googlecode.com/files/mbpurple-0.3.0.tar.gz
tar xvf mbpurple-0.3.0.tar.gz
cd mbpurple-0.3.0
make
make install


#Down and install the lib for Off The Record
cd ..
wget http://www.cypherpunks.ca/otr/libotr-3.2.0.tar.gz
tar xvf libotr-3.2.0.tar.gz
cd libotr-3.2.0
./configure
make
make install


#Down and install OTR for pidgin
cd ..
wget http://www.cypherpunks.ca/otr/pidgin-otr-3.2.0.tar.gz
tar xvf pidgin-otr-3.2.0.tar.gz
cd pidgin-otr-3.2.0
./configure --prefix=/usr
make
make install


#Down and install some fancy plugins ;)
cd ..
wget https://www.guifications.org/attachments/download/135/purple-plugin_pack-2.6.3.tar.bz2
tar xvf purple-plugin_pack-2.6.3.tar.bz2
cd purple-plugin_pack-2.6.3
./configure
make
make install


#Down and install pretty notifications
cd ..
wget https://www.guifications.org/attachments/download/143/pidgin-guifications-2.16.tar.bz2
tar xvf pidgin-guifications-2.16.tar.bz2
cd pidgin-guifications-2.16
./configure
make
make install


#Down and install skype "text" support ...
cd /usr/lib/purple-2/
wget http://eion.robbmob.com/libskype.so

echo done!

No comments:

Post a Comment

leave your comments
Thanks !