File: install.sh

package info (click to toggle)
childsplay-alphabet-sounds-pt 0.4.2-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k, lenny
  • size: 684 kB
  • ctags: 1
  • sloc: makefile: 1; python: 1
file content (59 lines) | stat: -rwxr-xr-x 1,627 bytes parent folder | download | duplicates (9)
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
51
52
53
54
55
56
57
58
59
#!/bin/bash 
# install plugin in the standard childsplay path  

PREFIX=/usr/local
DESTDIR=$PREFIX/share/childsplay

###########################################################
#    DO NOT EDIT BEHIND THIS POINT
# Unless your know what to edit
##########################################################

# Dependency, which version of childsplay at least
DEPEN=0.71
 
set -e
CWD=`pwd`

USERID=`id | sed -e 's/).*//; s/^.*(//;'`
if [ "$USERID" != "root" ]; then
    echo " You must be root to install the plugins"
    echo " exit"
    exit 1
fi

echo -e "\n>>>>>>>>>>> Install childsplay plugins >>>>>>>>>>>>>>>>>>>>"
echo -e "\n This release depends on childsplay version $DEPEN"
echo -n " Cheking version = "
VERSION=$(childsplay --version)
echo $VERSION

if [ `expr $VERSION \< $DEPEN` -eq 1 ];then
    echo " Childsplay version incorrect, please upgrade to at least"
    echo " version $DEPEN"
    echo "exit"
    exit 1
fi
   
echo -e "\n The path to install the soundfiles in is "
echo " $DESTDIR."
echo " If you have installed childsplay in a other place, you can"
echo " give the full path to childsplay, otherwise just hit enter"
echo " Hit enter to install in $DESTDIR, or give the full path"
read path
if [ $path ];then
    if [ -e $path/install.py ];then
        DESTDIR=path
    else
        echo "*********** WARNING *************"
        echo " $path does not exists or is not the childsplay directory"
        echo " exit"
        exit 1
    fi
fi
echo " Installing in $DESTDIR/Data/AlphabetSounds"

echo " Copy sound files"
cp -rf $CWD/AlphabetSounds $DESTDIR/Data/

echo -e "\n Everything installed, enjoy\n"