2023-10-06 18:45:15 +02:00
|
|
|
# Description: Meson PEP 517 Python build backend
|
|
|
|
# URL: https://github.com/mesonbuild/meson-python
|
|
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
2024-04-17 18:11:10 +02:00
|
|
|
# Depends on: meson patchelf python3-pyproject-metadata
|
2023-10-06 18:45:15 +02:00
|
|
|
|
|
|
|
name=meson-python
|
2024-04-17 18:11:10 +02:00
|
|
|
version=0.16.0
|
2023-10-06 18:45:15 +02:00
|
|
|
release=1
|
|
|
|
source=(https://pypi.org/packages/source/m/meson_python/meson_python-$version.tar.gz)
|
|
|
|
|
|
|
|
build() {
|
|
|
|
cd meson_python-$version
|
|
|
|
|
|
|
|
/usr/bin/python3 -m build --wheel --skip-dependency-check --no-isolation
|
|
|
|
/usr/bin/python3 -m installer --compile-bytecode 2 --destdir=$PKG dist/*.whl
|
|
|
|
}
|