1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
|
#!/bin/sh
#echo "fbpanel configuration script"
help () {
echo "supported options are:"
echo "--help - print this help and exit"
echo "--prefix=<path> specify install path. "
echo " <path>/bin - will hold all binaries"
echo " <path>/share/fbpanel - config files, pixmaps etc"
echo " default <path> is /usr"
echo "--devel - enable devel mode: no optimization + debug symbols"
echo "--cpu=[on|off] - enable linux cpu monitor plugin"
}
PREFIX="/usr"
PLUGIN_CPU="on"
while [ $# -gt 0 ]; do
case $1 in
--help)
help
exit 0
;;
--prefix=*)
PREFIX=`echo $1 | sed 's/--prefix=//'`
;;
--devel)
DEVEL=1
;;
--cpu=*)
PLUGIN_CPU=`echo $1 | sed 's/--cpu=//'`
;;
*)
echo "unknwon option $1"
help
exit 1
;;
esac
shift
done
echo "Installation prefix is $PREFIX"
echo "creating config.h"
echo "//created by ./configure script" > config.h
echo "#define PREFIX \"$PREFIX\"" >> config.h
echo "creating Makefile.config"
echo "PREFIX:=$PREFIX" > Makefile.config
echo "DEVEL:=$DEVEL" >> Makefile.config
echo "PLUGIN_CPU:=$PLUGIN_CPU" >> Makefile.config
|