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

Last change on this file since 20974 was 20974, checked in by davidb, 14 years ago

tidy up on support for installclean

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