mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-04-03 10:25:51 +00:00
15 lines
384 B
Bash
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
|