source: gs2-extensions/apache-jena/trunk/src/src/CASCADE-MAKE.sh@ 28430

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

Tidy up of print statement

  • Property svn:executable set to *
File size: 591 bytes
RevLine 
[28419]1#!/bin/bash
2
3source ../cascade-make/lib/cascade-lib.bash GEXT_JENA .. $*
4
5
6if [ $install = "1" ] ; then
7
8 echo "===="
9 echo "= Installing GS Triplestore Wrapper scripts"
[28421]10 echo "=="
[28419]11
12 triple_store="$GEXT_JENA_INSTALLED/etc/tdb-triple-store"
13 if [ ! -d "$triple_store" ] ; then
[28430]14 echo "= Creating empty triple-store:"
15 echo " $triple_store"
[28419]16 mkdir "$triple_store"
17 fi
18
19 echo "= Installing server-side scripts"
20 /bin/cp gs-triplestore-server* $GEXT_JENA_INSTALLED/bin/script/.
[28421]21 chmod a+rx $GEXT_JENA_INSTALLED/bin/script/gs-triplestore-server*
[28419]22
23 echo "===="
24 echo ""
25
26fi
Note: See TracBrowser for help on using the repository browser.