Don't migrate cache files
[pidgin-git.git] / README
blob348d2380e23d67f50c4dfa30b68e71c951eff382
1 Purple, Pidgin and Finch
2 ========================
3 See AUTHORS and COPYRIGHT for the list of contributors.
5 libpurple is a library intended to be used by programmers seeking
6 to write an IM client that connects to many IM networks.  It supports
7 AIM, ICQ, and XMPP, among others.
9 Pidgin is a graphical IM client written in C which uses the GTK+
10 toolkit.
12 Finch is a text-based IM client written in C which uses the ncurses
13 toolkit.
15 These programs are not endorsed by, nor affiliated with, AOL nor any
16 other company in any way.
18 BUILD
19 =====
21 Read the 'INSTALL' file for more detailed directions.
23 These programs use the standard ./configure ; make. You need to use
24 gmake, BSD make probably won't work. Remember, run ./configure --help
25 to see what build options are available.
27 In order to compile Pidgin you need to have GTK+ 2.0 installed (as
28 well as the development files!). The configure script will fail if you
29 don't.  If you don't have GTK+ 2.0 installed, you should install it
30 using your distribution's package management tools.
32 For sound support, you also need gstreamer 0.10 or higher.
33 Your distro of choice probably already includes these, just be sure to
34 install the development packages.
36 RUN
37 ===
39 You should run 'make install' as root to make sure plugins and other files
40 get installed into locations they want to be in. Once you've done that,
41 you only need to run 'pidgin' or 'finch'.
43 To get started, simply add a new account.
45 If you come across a bug, please report it at: https://developer.pidgin.im
47 PLUGINS
48 =======
50 If you do not wish to enable the plugin support within Purple, run the
51 ./configure script with the --disable-plugins option and recompile your
52 source code.  This will prevent the ability to load plugins.
54 'make install' puts the plugins in $PREFIX/lib/purple (PREFIX being what
55 you specified when you ./configure'd - it defaults to /usr/local). Purple
56 looks for the plugins in that directory by default.  Plugins can be installed
57 per-user in ~/.purple/plugins as well.  Pidgin and Finch also look in
58 $PREFIX/lib/pidgin and $PREFIX/lib/finch for UI-specific, respectively.
60 To build a plugin from a .c file, put it in the plugins/ directory in
61 the source and run 'make filename.so', e.g. if you have the .c file
62 'kickass.c', put it in the plugins/ directory, and from that directory,
63 run 'make kickass.so'.