]> kaliko git repositories - mpd-sima.git/blob - vinstall.sh
a6cb6b44801271196ad62c52be49d80bc32034b3
[mpd-sima.git] / vinstall.sh
1 #!/bin/sh
2 #
3 #   vinstall.sh
4 #
5 #   version: 0.2 : Date: 2013/11/13
6 #
7 #   TODO:
8 #           *
9 DEBUG=${DEBUG:-"0"}     #  Set to 1 in order to enable DEBUG message.
10                         ## Use "export DEBUG=1" in the calling script to enable it
11                         ##  or run:
12                         #           >$ DEBUG=1 script_name.sh
13                         ## Only error message will be printed with DEBUG="0"
14
15
16 PY3=${PY3:-$(which python3)}
17
18 # Test virtualenv presence
19 [ -x "$(which virtualenv)" ] || { echo "Cannot find virtualenv executable!"; exit 1; }
20 [ -x "$(which ${PY3})"  ] || { echo "Cannot find a python3.3 interpreter!"; exit 1; }
21 [ "$DEBUG" != "0" ] && echo "python: $PY3"
22
23 INSTALL_DIR=${INSTALL_DIR:-$(dirname $0)}
24 # canonicalize path
25 INSTALL_DIR=$(readlink -f ${INSTALL_DIR})
26 [ "$DEBUG" != "0" ] && echo "install dir: $INSTALL_DIR"
27
28 VENV_OPTIONS="--python=$PY3 --prompt="sima_venv" --no-site-packages --clear"
29 [ "$DEBUG" = "0" ] && VENV_OPTIONS="$VENV_OPTIONS --quiet"
30
31 virtualenv $VENV_OPTIONS $INSTALL_DIR/venv || { echo "something went wrong generating virtualenv"; exit 1; }
32
33 . $INSTALL_DIR/venv/bin/activate
34
35 PIP_OPTIONS=""
36 [ "$DEBUG" = "0" ] && PIP_OPTIONS="$PIP_OPTIONS --quiet"
37
38 pip $PIP_OPTIONS install --pre python-musicpd || exit 1
39
40 deactivate
41
42 SIMA_LAUNCHER=$(readlink -f $(dirname $0))/launch
43 SIMA_VLAUNCHER=$(readlink -f $(dirname $0))/vlaunch
44 [ -x "$SIMA_LAUNCHER" ] || { echo "$SIMA_LAUNCHER not available"; exit 1; }
45
46 cat << EOF > $SIMA_VLAUNCHER
47 #!/bin/sh
48 . $INSTALL_DIR/venv/bin/activate
49 python $SIMA_LAUNCHER "\$@"
50 EOF
51 chmod +x $SIMA_VLAUNCHER
52
53 echo 
54
55 # vim: fileencoding=utf8