diff options
author | William Joye <wjoye@cfa.harvard.edu> | 2016-11-17 21:21:33 (GMT) |
---|---|---|
committer | William Joye <wjoye@cfa.harvard.edu> | 2016-11-17 21:21:33 (GMT) |
commit | 8705a471f0cb989dca5bed1ac1aa9c982146ceb0 (patch) | |
tree | c76eb1b28847599af70596ce7adbfd62ca4985f5 /libxslt/INSTALL | |
parent | 8d530e150d787e9a74e27592d4e67a496cd922da (diff) | |
parent | 93eaa8f0a22ef3712b9a4bafdc50ba9a7d80ae8f (diff) | |
download | blt-8705a471f0cb989dca5bed1ac1aa9c982146ceb0.zip blt-8705a471f0cb989dca5bed1ac1aa9c982146ceb0.tar.gz blt-8705a471f0cb989dca5bed1ac1aa9c982146ceb0.tar.bz2 |
Merge commit '93eaa8f0a22ef3712b9a4bafdc50ba9a7d80ae8f' as 'libxslt'
Diffstat (limited to 'libxslt/INSTALL')
-rw-r--r-- | libxslt/INSTALL | 49 |
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. + |