source: main/trunk/gli/makejar.sh@ 32594

Last change on this file since 32594 was 31649, checked in by ak19, 7 years ago

Updated GLI's batch and bash scripts to refer to the new JNA jar files and added a description of these jar files, there purpose, their version and where to get them into the lib/README.txt file.

  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 2.9 KB
Line 
1#!/bin/sh
2glilang=en
3
4
5# This script must be run from within the directory in which it lives
6thisdir=`pwd`
7if [ ! -f "${thisdir}/makejar.sh" ]; then
8 if [ "$glilang" = "es" ]; then
9 echo "Este guión deberá ejecutarse desde el directorio en el que reside."
10 elif [ "$glilang" = "fr" ]; then
11 echo "Ce script doit être exécuté à partir du répertoire dans lequel il se trouve."
12 elif [ "$glilang" = "ru" ]; then
13 echo "üÔÏÔ ÓËÒÉÐÔ ÄÏÌÖÅÎ ÂÙÔØ ×ÚÑÔ ÉÚ ÄÉÒÅËÔÏÒÉÉ, × ËÏÔÏÒÏÊ ÏÎ ÒÁÓÐÏÌÏÖÅÎ"
14 else
15 echo "This script must be run from the directory in which it resides."
16 fi
17 exit 1
18fi
19
20echo "Generating the JAR files for Remote Greenstone"
21
22## ---- Check that the GLI has been compiled ----
23if [ ! -f "classes/org/greenstone/gatherer/GathererProg.class" ]; then
24 echo
25 if [ "$glilang" = "es" ]; then
26 echo "Usted necesita compilar la Interfaz de la Biblioteca Digital Greenstone"
27 echo "(por medio de makegli.sh) antes de ejecutar este guión."
28 elif [ "$glilang" = "fr" ]; then
29 echo "Vous devez compiler le Greenstone Interface (en utilisant makegli.sh)"
30 echo "avant d'exécuter ce script."
31 elif [ "$glilang" = "ru" ]; then
32 echo "÷Ù ÄÏÌÖÎÙ ËÏÍÐÉÌÉÒÏ×ÁÔØ ÂÉÂÌÉÏÔÅÞÎÙÊ ÉÎÔÅÒÆÅÊÓ Greenstone"
33 echo "(ÉÓÐÏÌØÚÕÑ makegli.sh) ÐÅÒÅÄ ××ÏÄÏÍ ÜÔÏÇÏ ÓËÒÉÐÔÁ"
34 else
35 echo "You need to compile the Greenstone Librarian Interface (using makegli.sh)"
36 echo "before running this script."
37 fi
38 exit 1
39fi
40
41echo "Assuming that Java code is freshly compiled..."
42
43rm -rf jar
44mkdir jar
45
46# GLI class files and supporting libraries
47cd jar
48jar xf ../lib/apache.jar com org javax
49jar xf ../lib/jna.jar com
50jar xf ../lib/jna-platform.jar com
51jar xf ../lib/qfslib.jar de
52jar xf ../lib/rsyntaxtextarea.jar org theme.dtd
53cd ..
54
55# Copy the latest version of the GLI classes into the jar directory
56rm -rf jar/org/greenstone
57cp -r classes/org/greenstone jar/org
58
59# Some of the things to go into the JAR file are optional, and may not exist
60if [ -f collect.zip ]; then
61 cp collect.zip jar
62fi
63
64# Recreate the metadata.zip file (contains the GLI metadata directory)
65rm -f metadata.zip
66zip -r jar/metadata.zip metadata >/dev/null
67
68# Dictionary files
69cd classes
70for dict_file in dictionary*.properties; do
71 cp $dict_file ../jar
72done
73cd ..
74
75# Other required directories and files
76cp -r 'help' jar
77cp -r 'classes/images' jar
78cp -r 'classes/xml' jar
79cp 'classes/feedback.properties' jar
80cp '.java.policy' jar
81
82# Clean .svn dirs
83find jar -name '.svn' -type d -exec rm -rf {} \; 2> /dev/null
84
85# Jar everything up
86cd jar
87jar cf ../GLI.jar *
88cd ..
89
90# Generate the GLIServer.jar file for remote building
91jar cf GLIServer.jar -C jar org/greenstone/gatherer/remote
92
93# ---- Make signed JAR file for the applet, if desired ----
94if [ "$1" = "-sign" ]; then
95 rm -f SignedGatherer.jar
96 echo "greenstone" | jarsigner -keystore .greenstonestore -signedjar SignedGatherer.jar GLI.jar privateKey 2> /dev/null
97 echo
98 echo "Installing SignedGatherer in ../bin/java"
99 mv SignedGatherer.jar ../bin/java/.
100fi
Note: See TracBrowser for help on using the repository browser.