diff options
author | Daniel Veillard <veillard@src.gnome.org> | 2001-01-07 14:14:43 +0000 |
---|---|---|
committer | Daniel Veillard <veillard@src.gnome.org> | 2001-01-07 14:14:43 +0000 |
commit | a7e5d2d52cfc1e613497f8a877ff4bdf6ec5fa2a (patch) | |
tree | 6f247e72cefe145cc884adcc0d94f512f720085e /INSTALL | |
parent | 09793e0a934af4ec070be5921733d9442690d0cc (diff) | |
download | libxslt-a7e5d2d52cfc1e613497f8a877ff4bdf6ec5fa2a.tar.gz libxslt-a7e5d2d52cfc1e613497f8a877ff4bdf6ec5fa2a.tar.bz2 libxslt-a7e5d2d52cfc1e613497f8a877ff4bdf6ec5fa2a.zip |
Imported into GNOME CVS base
added an INSTALL short doc,
Does nothing so far this is mostly infrastructure
Daniel
Diffstat (limited to 'INSTALL')
-rw-r--r-- | INSTALL | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/INSTALL b/INSTALL new file mode 100644 index 00000000..312f2f66 --- /dev/null +++ b/INSTALL @@ -0,0 +1,48 @@ + How to install the XSLT library: + +Requirements: +============= + +this library requires libxml2 which you can grab from +either the GNOME FTP or the xmlsoft.org server: + + ftp://xmlsoft.org/ + +When installing from a distribution package like a tar.gz: +========================================================== + +expand the package + +run ./configure possibly indicating the desired installation prefix: + + ./configure --prefix=/usr + +then run + + make + +to build the project and + + make install + +(possibly after having gained root access) to instal the library +and associated include and scripts. + +When installing from a checkout of the GNOME CVS base: +====================================================== + + +run ./autogen.sh possibly indicating the desired installation prefix: + + ./autogen.sh --prefix=/usr + +then run + + make + +to build the project and + + make install + +(possibly after having gained root access) to instal the library +and associated include and scripts. |