- add sources.
[platform/framework/web/crosswalk.git] / src / third_party / libxslt / INSTALL
1          How to install the XSLT library:
2
3 Requirements:
4 =============
5
6 this library requires a recent version of libxml2 which you can grab from
7 either the GNOME FTP or the xmlsoft.org server:
8
9   ftp://xmlsoft.org/
10
11 When installing from a distribution package like a tar.gz:
12 ==========================================================
13
14 expand the package
15
16 run ./configure possibly indicating the desired installation prefix: 
17
18     ./configure --prefix=/usr
19
20 then run
21
22     make
23
24 to build the project and
25
26     make install 
27
28 (possibly after having gained root access) to install the library
29 and associated include and scripts.
30
31 When installing from a checkout of the GNOME CVS base:
32 ======================================================
33
34
35 run ./autogen.sh possibly indicating the desired installation prefix: 
36
37     ./autogen.sh --prefix=/usr
38
39 then run
40
41     make
42
43 to build the project and
44
45     make install 
46
47 (possibly after having gained root access) to instal the library
48 and associated include and scripts.
49