summaryrefslogtreecommitdiffstats
path: root/libxslt/INSTALL
diff options
context:
space:
mode:
authorWilliam Joye <wjoye@cfa.harvard.edu>2016-10-19 18:25:21 (GMT)
committerWilliam Joye <wjoye@cfa.harvard.edu>2016-10-19 18:25:21 (GMT)
commitd72feaf69933b069cff3c0cb20a5f5f03ecba77b (patch)
treebf51d2814f4be65c850dba86dc2a5db0ad38bedf /libxslt/INSTALL
parent34be72f9ed749a5c013d3f7f47d810e8caf652cb (diff)
parent49e8fbec2420ef55b3246aabd89328b13530810c (diff)
downloadblt-d72feaf69933b069cff3c0cb20a5f5f03ecba77b.zip
blt-d72feaf69933b069cff3c0cb20a5f5f03ecba77b.tar.gz
blt-d72feaf69933b069cff3c0cb20a5f5f03ecba77b.tar.bz2
Merge commit '49e8fbec2420ef55b3246aabd89328b13530810c' as 'libxslt'
Diffstat (limited to 'libxslt/INSTALL')
-rw-r--r--libxslt/INSTALL49
1 files changed, 49 insertions, 0 deletions
diff --git a/libxslt/INSTALL b/libxslt/INSTALL
new file mode 100644
index 0000000..5fd3ecf
--- /dev/null
+++ b/libxslt/INSTALL
@@ -0,0 +1,49 @@
+ How to install the XSLT library:
+
+Requirements:
+=============
+
+this library requires a recent version of 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 install 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.
+