source: gs2-extensions/gsdl-ocr/trunk/CASCADE-MAKE.sh@ 21525

Last change on this file since 21525 was 16800, checked in by davidb, 16 years ago

Creation of Greenstone extension for OCR support

File size: 401 bytes
Line 
1#!/bin/bash
2
3source bin/script/test-setup.bash
4source lib/cascade-lib.bash
5
6if [ ! -d "$GEXTOCR_INSTALLED" ] ; then
7 echo "Making directory \"$GEXTOCR_INSTALLED\""
8 mkdir "$GEXTOCR_INSTALLED"
9fi
10
11for d in packages ; do
12 echo "Running $d/CASCADE-MAKE.sh $*"
13
14 (cd $d ; ./CASCADE-MAKE.sh $*)
15
16 if [ $? != 0 ] ; then
17 echo "Error encountered running $d/CASCADE-COMPILE.sh"
18 exit 1
19 fi
20done
21
22
Note: See TracBrowser for help on using the repository browser.