r125: This commit was manufactured by cvs2svn to create tag 'r1_1_7-last'.
[cinelerra_cv/mob.git] / hvirtual / plugins / install_plugins
blob578b50d3b2572834eec00568591dd7015456fcce
1 #! /bin/bash
3 PLUGINS_DIR=$1
4 echo "Postprocessing plugins in $PLUGINS_DIR"
6 echo "Bootstraping themes"
7 for theme in `cat themes`; do
8 echo $PLUGINS_DIR/lib$theme.so
9 ./bootstrap $PLUGINS_DIR/$theme.so $theme/data/*.png
10 done
12 echo "Renaming plugins"
13 # generic
14 cd $PLUGINS_DIR
15 rm -f *.a *.la
16 for file in *.so; do
17 newfile=${file/so/plugin}
18 mv -f $file $newfile
19 done
21 #colors is only a library
22 mv libcolors.plugin libcolors.so
23 mv libfourier.plugin libfourier.so
24 mv libeffecttv.plugin libeffecttv.so
25 cd -