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

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

Add and Query scripts added to the mix

  • Property svn:executable set to *
File size: 732 bytes
Line 
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"
10 echo "=="
11
12 triple_store="$GEXT_JENA_INSTALLED/etc/tdb-triple-store"
13 if [ ! -d "$triple_store" ] ; then
14 echo "= Creating empty triple-store:"
15 echo " $triple_store"
16 mkdir "$triple_store"
17 fi
18
19 echo "= Installing server-side scripts"
20 /bin/cp gs-triplestore-* $GEXT_JENA_INSTALLED/bin/script/.
21 chmod a+rx $GEXT_JENA_INSTALLED/bin/script/gs-triplestore-*
22
23 echo "= Installing Greenstone-style CSS"
24 /bin/cp fuseki.css $GEXT_JENA_INSTALLED/etc/pages/.
25 chmod a+r $GEXT_JENA_INSTALLED/etc/pages/fuseki.css
26
27
28 echo "===="
29 echo ""
30
31fi
Note: See TracBrowser for help on using the repository browser.