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