From e16678950607bf80eb879202d3eff0377c80892a Mon Sep 17 00:00:00 2001 From: snowdrop Date: Fri, 22 Jul 2005 08:55:46 +0000 Subject: altered script with vars --- doc/compile.xml | 29 +++++++++++++++++------------ 1 file changed, 17 insertions(+), 12 deletions(-) diff --git a/doc/compile.xml b/doc/compile.xml index 6dabd72..f192e45 100644 --- a/doc/compile.xml +++ b/doc/compile.xml @@ -172,27 +172,32 @@ Ok. Here is a script which will download, compile and install csoap and libxml2. #----------------------------------------------------------- #!/bin/sh +# Alter this variables for your installation directory +LIBSOAPDIST=/usr/local +LIBXMLDIST=/usr/local + # Download and install libxml2 -wget ftp://ftp.xmlsoft.org/libxml2-2.6.20.tar.gz -tar zxvf libxml2-2.6.20.tar.gz -cd libxml2-2.6.20 -./configure --prefix=`pwd`/../libxml2 -make -make install +wget ftp://ftp.xmlsoft.org/libxml2-2.6.20.tar.gz +tar zxvf libxml2-2.6.20.tar.gz +cd libxml2-2.6.20 +./configure --prefix=$LIBXMLDIST +make +make install cd .. # Download and install cSOAP - -wget http://kent.dl.sourceforge.net/sourceforge/csoap/libsoap-1.0.3.tar.gz -tar zxvf libsoap-1.0.3.tar.gz -cd libsoap-1.0.3 -./configure --prefix=`pwd`/../libsoap --with-libxml-prefix=`pwd`/../libxml2 -make + +wget http://kent.dl.sourceforge.net/sourceforge/csoap/libsoap-1.0.3.tar.gz +tar zxvf libsoap-1.0.3.tar.gz +cd libsoap-1.0.3 +./configure --prefix=$LIBSOAPDIST --with-libxml-prefix=$LIBXMLDIST +make make install #----------------------------------------------------------- + ]]> -- cgit v1.1-32-gdbae