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

Last change on this file since 36764 was 35151, checked in by davidb, 3 years ago

XSL files from Fuseki-v1 need to be copied over to webapps area of Fuseki-v3 for GS3 Sparql download form submit to work

  • Property svn:executable set to *
File size: 897 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 (for Fuseki3)"
10 echo "=="
11
12 triple_store="$GEXT_JENA/etc/tdb-triple-store3"
13 if [ ! -d "$triple_store" ] ; then
14 echo "= Creating empty triple-store:"
15 echo " $triple_store"
16 mkdir "$triple_store"
17
18 /bin/cp tdb3.ttl "$GEXT_JENA/etc/."
19 fi
20
21 echo "= Installing server-side scripts"
22 /bin/cp gs-triplestore-* $GEXT_JENA/bin/script3/.
23 chmod a+rx $GEXT_JENA/bin/script3/gs-triplestore-*
24
25# echo "= Installing Greenstone-style CSS"
26# /bin/cp fuseki.css $GEXT_JENA/etc/pages/.
27# chmod a+r $GEXT_JENA/etc/pages/fuseki.css
28
29 echo "= Transferring Fuseki-v1 XSL files to Fuseki-v3"
30 /bin/cp "$GEXT_JENA/etc/pages/"*.xsl "$GEXT_JENA/packages/apache-jena-fuseki-3.17.0/webapp/."
31
32 echo "===="
33 echo ""
34
35fi
Note: See TracBrowser for help on using the repository browser.