1

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?

Mat
  • 51,578
  • 10
  • 158
  • 140
artaxerxe
  • 473
  • 3
  • 10
  • 20

1 Answers1

1
$ 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

Mat
  • 51,578
  • 10
  • 158
  • 140
harish.venkat
  • 7,313
  • 2
  • 25
  • 30