ID: 9a5b7ee137114c8467be3661661c8b04a96e2aeb
39 lines
—
832B —
View raw
| SHELL = /bin/bash
REPOSITORY = https://github.com/mozilla/pontoon.git
check_env_vars:
ifdef OUTPUT_PATH
OUTPUT_PATH := ${OUTPUT_PATH}/mozilla-pontoon
else
$(error OUTPUT_PATH is undefined)
endif
venv-3.11:
export PYENV_VERSION=3.11
python3 -m venv venv
repository:
git clone ${REPOSITORY} repository
# This repo doesn't use tags for releases, therefore we checkout specific commits.
# The date is the commit's date.
2024-05-22-fadf6976: check_env_vars venv-3.11 repository
# Extract commit hash
commit_hash=$@
commit_hash=$${commit_hash:11}
source venv/bin/activate
cd repository
git checkout $${commit_hash}
pip install -r docs/requirements.txt
cd docs
make clean
make dirhtml
mkdir --parents "${OUTPUT_PATH}"
cp --recursive _build/dirhtml "${OUTPUT_PATH}/$@"
.ONESHELL:
.SUFFIXES:
.PHONY:
.DELETE_ON_ERROR:
|