Switch away from pip3 for module installation and add license

This commit is contained in:
2025-05-12 14:48:39 +03:00
parent d40fe0f2a0
commit 9018ab30ad
2 changed files with 8 additions and 5 deletions
+5 -2
View File
@@ -15,11 +15,14 @@ prepare() {
# The build function is executed in the source directory
# This function is used to compile the source code
build() {
pip3 wheel -w dist --no-cache-dir --no-build-isolation --no-deps $PWD
python -m build --wheel --no-isolation .
}
# The package function is executed in the source directory
# This function is used to move the compiled files into the output directory
package() {
pip3 install --root="$BPM_OUTPUT" --ignore-installed --no-deps --no-index --no-user --find-links dist Jinja2
python3 -m installer --destdir "$BPM_OUTPUT" dist/*.whl
# Install package license
install -Dm644 LICENSE.rst "$BPM_OUTPUT"/usr/share/licenses/python-jinja/LICENSE.rst
}