source: gs3-extensions/i-jetty/trunk/src/setup.bash@ 25606

Last change on this file since 25606 was 25606, checked in by davidb, 12 years ago

Restructuring scripts to prepare all files needed on the sd-card locally, before pushing across to device

File size: 3.2 KB
Line 
1
2if [ "x$ANDROID_SDK_HOME" = "x" ] ; then
3 if [ ! -e setup-android.bash ] ; then
4 echo "Unable to find 'setup-android.bash'. You either need to:"
5 echo " 1) copy setup-android.bash.in to setup-android.bash and"
6 echo " edit **ANDROID_SDK_HOME** to point to where this is located"
7 echo " on your file system, or"
8 echo " 2) Explicitly set the environment variable ANDROID_SDK_HOME"
9 echo " and make sure 'dx' is on your PATH"
10 exit
11 else
12 source setup-android.bash
13 fi
14fi
15
16export IJETTY_HOME=`pwd`
17export IJOS=`uname | sed 's/^cygwin.*$/cygwin/i' | sed 's/^mingw.*$/mingw/i'`
18
19if [ "x$GSDL3HOME" = "x" ] ; then
20 echo " Setting GSDL3HOME to '../../web'"
21 export GSDL3HOME=../../web
22else
23 echo "Using existing value of GSDL3HOME: '$GSDL3HOME'"
24fi
25
26if [ "x$SDCARD_WEBAPPS" = "x" ] ; then
27
28 possible_drives=""
29 if [ "x$IJOS" = "xcygwin" ] ; then
30
31 possible_drives=`ls -d /cygdrive/*/jetty/webapps 2>/dev/null`
32 elif [ "x$IJOS" = "xmingw" ] ; then
33 possible_drives=`ls -d /*/jetty/webapps 2>/dev/null`
34 else
35 # Linux and MacOS
36 possible_drives=`ls -d /mnt/*/jetty/webapps 2>/dev/null`
37 fi
38
39 num_possible_drives=`echo $possible_drives | wc -l`
40
41 if [ $num_possible_drives = "0" ] ; then
42 echo " Failed to automatically find and sdcard webapps folders"
43 echo " Explicitly set the environment variable SDCARD_WEBAPPS to control"
44 echo " installation on the Android phone"
45 elif [ $num_possible_drives = "1" ] ; then
46 export SDCARD_WEBAPPS=${possible_drives[0]}
47 else
48 echo " Detected more than one possible sdcard webapps folders:"
49 echo " $possible_drives"
50 echo " Explicitly set the environment variable SDCARD_WEBAPPS to control"
51 echo " which one is used for installation on the Android phone"
52 fi
53fi
54
55export PREPARE_SDCARD_GSDL3HOME=`pwd`/war/greenstone3/
56
57if [ "x$SDCARD_WEBAPPS" != "x" ] ; then
58 export SDCARD_GSDL3HOME=$SDCARD_WEBAPPS/greenstone3/
59 echo ""
60 echo " Using:"
61 echo ""
62 echo " $PREPARE_SDCARD_GSDL3HOME"
63 echo ""
64 echo " as the *preparation* area for the Greenstone servlet"
65 echo ""
66 echo " Using:"
67 echo ""
68 echo " $SDCARD_GSDL3HOME"
69 echo ""
70 echo " as the *installation* point for the Greenstone servlet"
71 echo ""
72fi
73
74
75if [ "x$IJETTY_PORT" = "x" ] ; then
76 export IJETTY_PORT=8080
77 echo ""
78 echo " Setting IJETTY_PORT to 8080"
79 echo " Explicityly set this environment variable to override this default"
80 echo ""
81else
82 echo ""
83 echo " Using IJETTY PORT = $IJETTY_PORT"
84 echo ""
85fi
86
87echo "+ Your environment has now been set up with iJetty extension for Greenstone"
88
89echo ""
90echo "======"
91echo "If this is the first time you have installed Greenstone on the Android device, "
92echo " run:"
93echo ""
94echo " adb install i-jetty-2.2-signed.apk"
95echo ""
96echo "to install jetty on your device, followed by"
97echo ""
98echo " ./WEBAPP-ROOT-TO-SDCARD.sh"
99echo ""
100echo "to set up tGreenstone's 'web' directory within the i-jetty webapps area."
101echo "Then:"
102echo ""
103echo " ./JAVA-TO-DEX.sh"
104echo ""
105echo "to cross-compile Greenstone java code to the Android DEX format."
106echo ""
107echo "Finally run:"
108echo ""
109echo " ./DEX-TO-SDCARD.sh"
110echo ""
111echo "to install the cross-compiled files on the Android device"
112echo "======"
113echo ""
114
115
116
117
118
119
Note: See TracBrowser for help on using the repository browser.