vdirsyncer/tests/storage/servers/radicale/install.sh
Markus Unterwaditzer 563f9c9d34 Re-add minimal requirements build
Testing older lxml against radicale
2015-12-18 21:08:11 +01:00

21 lines
485 B
Bash

#!/bin/sh
set -e
if [ -z "$RADICALE_BACKEND" ]; then
echo "Missing RADICALE_BACKEND"
false
fi
if [ "$REQUIREMENTS" = "release" ] || [ "$REQUIREMENTS" = "minimal" ]; then
radicale_pkg="radicale"
elif [ "$REQUIREMENTS" = "devel" ]; then
radicale_pkg="git+https://github.com/Kozea/Radicale.git"
else
echo "Invalid requirements envvar"
false
fi
pip install wsgi_intercept $radicale_pkg
if [ "$RADICALE_BACKEND" = "database" ]; then
pip install sqlalchemy
fi