source: gs3-extensions/html-to-expeditee/trunk/src/INSTALL-FOR-GREENSTONE3.sh@ 26749

Last change on this file since 26749 was 26749, checked in by davidb, 11 years ago

Generation of collection space now done during running of html-to-expeditee script and only if the appropriate checkbox is selected by the user.

File size: 2.2 KB
Line 
1#!/bin/bash
2
3installPerlCGI()
4{
5
6 if [ "x$FULL_PERL_EXE" != "x" ] ; then
7 echo " Using FULL_PERL_EXE = $FULL_PERL_EXE"
8 elif [ "x$PERL_HOME" != "x" ] ; then
9 echo " Constructing FULL_PERL_EXE from PERL_HOME=$PERL_HOME"
10 export FULL_PERL_EXE="$PERL_HOME/bin/perl"
11 else
12 echo " Neither FULL_PERL_EXE or PERL_HOME set."
13 echo " Constructing FULL_PERL_EXE from 'which perl'"
14 export FULL_PERL_EXE=`which perl`
15 fi
16
17 echo " Substituting @FULL_PERL_EXE@ -> $FULL_PERL_EXE"
18
19 cat src/cgi-bin/html-to-expeditee.pl.in \
20 | sed "s%@FULL_PERL_EXE@%$FULL_PERL_EXE%g" \
21 > ../../web/WEB-INF/cgi/html-to-expeditee.pl
22
23 cat src/cgi-bin/export-individual-expeditee.pl.in \
24 | sed "s%@FULL_PERL_EXE@%$FULL_PERL_EXE%g" \
25 > ../../web/WEB-INF/cgi/export-individual-expeditee.pl
26
27}
28
29if [ ! -d ../../web/ext/html-to-expeditee ] ; then
30 echo "Making supporting html-to-expeditee directory in web/ext folder"
31 mkdir ../../web/ext/html-to-expeditee
32fi
33
34if [ ! -d ../../web/ext/html-to-expeditee/jquery ] ; then
35 echo "Copying jquery into web/ext/html-to-expeditee folder"
36 /bin/cp -r packages/jquery ../../web/ext/html-to-expeditee/.
37fi
38
39if [ ! -d ../../web/ext/html-to-expeditee/js ] ; then
40 echo "Copying src/js into web/ext/html-to-expeditee/js"
41 /bin/cp -r src/js ../../web/ext/html-to-expeditee/.
42elif [ "src/js/html-to-expeditee.js" -nt "../../web/ext/html-to-expeditee/js/html-to-expeditee.js" ] ; then
43 echo "Updating src/js/*.js to web/ext/html-to-expeditee/js/."
44 /bin/cp -r src/js/*.js ../../web/ext/html-to-expeditee/js/.
45fi
46
47
48if [ ! -f ../../web/WEB-INF/cgi/html-to-expeditee.pl ] ; then
49 echo "Installing html-to-expeditee.pl to cgi-bin directory"
50 installPerlCGI
51elif [ "src/cgi-bin/html-to-expeditee.pl.in" -nt "../../web/WEB-INF/cgi/html-to-expeditee.pl" ] ; then
52 echo "Installing latest version of html-to-expeditee.pl to cgi-bin directory"
53 installPerlCGI
54fi
55
56if [ ! -f ../../web/WEB-INF/cgi/export-individual-expeditee.pl ] ; then
57 echo "Installing export-individual-expeditee.pl to cgi-bin directory"
58 installPerlCGI
59elif [ "src/cgi-bin/export-individual-expeditee.pl.in" -nt "../../web/WEB-INF/cgi/export-individual-expeditee.pl" ] ; then
60 echo "Installing latest version of export-individual-expeditee.pl to cgi-bin directory"
61 installPerlCGI
62fi
Note: See TracBrowser for help on using the repository browser.