]> Pileus Git - ~andy/gtk/blob - INSTALL.in
Add notes about gobject-introspection
[~andy/gtk] / INSTALL.in
1 Prerequisites
2 =============
3
4 GTK+ requires the following packages:
5
6  - The GLib, Pango, ATK and cairo libraries, available at the same
7    location as GTK+. GTK+ @GTK_VERSION@ requires at least GLib 2.23.6,
8    Pango 1.20, ATK 1.29.2 and cairo 1.6.0.
9
10  - gobject-introspection 0.6.7 or newer.
11
12  - The TIFF, PNG, and JPEG image loading libraries. You most
13    likely have these installed on your system already. If not
14    these libraries are available from:
15
16     http://www.libtiff.org/
17     http://www.libpng.org/
18     http://www.ijg.org/
19
20     libtiff must be version 3.6.0 or higher.
21
22 Simple install procedure
23 ========================
24
25   % gzip -cd gtk+-@GTK_VERSION@.tar.gz | tar xvf - # unpack the sources
26   % cd gtk+-@GTK_VERSION@                          # change to the toplevel directory
27   % ./configure                            # run the `configure' script
28   % make                                   # build GTK+
29   [ Become root if necessary ]
30   % make install                           # install GTK+
31
32 The Details
33 ===========
34
35 Complete information about installing GTK+ and related libraries can be found 
36 in the file:
37
38  docs/reference/gtk/html/gtk-building.html
39
40 Or online at:
41
42  http://developer.gnome.org/doc/API/2.0/gtk/gtk-building.html
43