]> kaliko git repositories - mpd-sima.git/blobdiff - vinstall.sh
Update documentation, generate manuals
[mpd-sima.git] / vinstall.sh
index 143e8850a3383917fa4409d25682fb83ba99efd2..88d792a72302bd885e5b1951d979e2f884759559 100755 (executable)
@@ -35,23 +35,28 @@ virtualenv $VENV_OPTIONS $INSTALL_DIR/venv || { echo "something went wrong gener
 PIP_OPTIONS=""
 [ "$DEBUG" = "0" ] && PIP_OPTIONS="$PIP_OPTIONS --quiet"
 
-pip $PIP_OPTIONS install --pre python-musicpd || exit 1
+pip install -e . || exit 1
 
-echo Installing mpd-siuma
+echo Installing mpd-sima
 $(dirname $0)/setup.py --quiet install || exit 1
 
 deactivate
 
 SIMA_LAUNCHER=mpd-sima
-SIMA_VLAUNCHER=$(readlink -f $(dirname $0))/vmpd-sima
+SIMA_VLAUNCHER=$INSTALL_DIR/vmpd-sima
 
-cat << EOF > $SIMA_VLAUNCHER
+cat << EOF > "$SIMA_VLAUNCHER"
 #!/bin/sh
 . $INSTALL_DIR/venv/bin/activate
-$SIMA_LAUNCHER "\$@"
+$INSTALL_DIR/$SIMA_LAUNCHER "\$@"
 EOF
 chmod +x $SIMA_VLAUNCHER
 
+echo Cleaning up
+rm -rf $(dirnddame $0)/dist
+rm -rf $(dirname $0)/build
+rm -rf $(dirname $0)/sima.egg-info
+
 echo
 
 # vim: fileencoding=utf8