I'm a very new CentOS user. I came from Ubuntu. I need to install Empathy on my CentOS PC.
Can anybody explain how to do that?
I'm a very new CentOS user. I came from Ubuntu. I need to install Empathy on my CentOS PC.
Can anybody explain how to do that?
$ git clone git://git.gnome.org/empathy
$ ./autogen.sh --prefix=<your prefix>
$ make && make install
$ ldconfig
(if installing in a system library. Make sure that "/etc/ld.so.conf" contains "/lib" first.)
If you installed in a special prefix different from /usr or /usr/local you have to add it to XDG dirs:
$ export XDG_DATA_DIRS="$XDG_DATA_DIRS:$prefix"
To make use of files from source dir (*.ui, *.dtd, etc) you can define
EMPATHY_SRCDIR=/path/to/empathy/source
check here for details