source: extensions/gsdl-video/trunk/runtime-srcpack/packages/CASCADE-MAKE/FLOWPLAYER.sh@ 18994

Last change on this file since 18994 was 18994, checked in by davidb, 15 years ago

Fixed type of echo message

  • Property svn:executable set to *
File size: 640 bytes
RevLine 
[18952]1
2#!/bin/bash
3
4package=flowplayer
5version=-gs
6
7progname=$0
8
9source ../../cascade-make/bin/script/test-setup.bash
10source ../../cascade-make/lib/cascade-lib.bash
11
12prefix=$GEXTVIDEO_INSTALLED/$GSDLOS
13webprefix=../../web
14
15opt_run_untar $force_untar $auto_untar $package $version
16
17# no make configure, or compile needed
18
19#install
20if [ $install = "1" ] ; then
[18994]21 if [ ! -d $webprefix/flash ] ; then
22 echo "Installing Flowplayer into $webprefix folder"
[18952]23 /bin/cp -rf $package$version $webprefix/flash
24 fi
25fi
26
27#installclean
28if [ $installclean = "1" ] ; then
29 /bin/rm -rf $webprefix/flash
30fi
31
32
33
34opt_run_tarclean $tarclean $package $version
35
36
37
Note: See TracBrowser for help on using the repository browser.