ID: 9df0d9c6e1c8c1e1d541987f58139a74c2d09fb8
31 lines
—
602B —
View raw
| SHELL = /bin/bash
REPOSITORY = https://github.com/WeblateOrg/weblate.git
check_env_vars:
ifdef OUTPUT_PATH
OUTPUT_PATH := ${OUTPUT_PATH}/weblate
else
$(error OUTPUT_PATH is undefined)
endif
venv:
python3 -m venv venv
repository:
git clone ${REPOSITORY} repository
weblate-4.18.2 weblate-5.0 weblate-5.3: check_env_vars venv repository
source venv/bin/activate
cd repository
git checkout tags/$@
cd docs
pip install -r requirements.txt
make clean dirhtml
mkdir --parents "${OUTPUT_PATH}"
cp --recursive _build/dirhtml "${OUTPUT_PATH}/$@"
.ONESHELL:
.SUFFIXES:
.PHONY:
.DELETE_ON_ERROR:
|