vdirsyncer/install-deps.sh
Markus Unterwaditzer ea3e82ccba --use-mirrors
It seems to be deprecated, but everybody seems to use it.
2014-03-07 14:59:36 +01:00

15 lines
384 B
Bash

pip install --use-mirrors .
pip install --use-mirrors -r requirements.txt
[[ -z "$DAV_SERVER" ]] && DAV_SERVER=radicale
case "$DAV_SERVER" in
"radicale")
pip install --use-mirrors radicale
;;
"radicale-git")
pip install git+https://github.com/Kozea/Radicale.git
;;
*)
echo "$DAV_SERVER is not known."
exit 1
;;
esac