anki/scripts.inc
Damien Elmes 5876866565 tweaking the folder names again
hopefully that's the last of it
2020-01-03 07:48:38 +10:00

29 lines
525 B
Bash

#!/bin/bash
set -e
CHECKABLE="rslib pylib qt"
DEVEL="rspy pylib qt i18n"
if [ "$UNOPT" = "" ]; then
BUILDFLAGS="--release --strip"
else
BUILDFLAGS=""
fi
# activate venv
if [ ! -d pyenv ]; then
python -m venv pyenv
. pyenv/bin/activate
pip install --upgrade pip setuptools
else
. pyenv/bin/activate
fi
# add qt if missing
python -c 'import PyQt5' 2>/dev/null || pip install -r qt/requirements.qt
# fetch i18n files
test -d i18n || git clone --depth 1 https://github.com/ankitects/anki-i18n i18n