17 lines
532 B
Plaintext
17 lines
532 B
Plaintext
# Description: Meson PEP 517 Python build backend
|
|
# URL: https://github.com/mesonbuild/meson-python
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
|
# Depends on: meson patchelf python3-pyproject-metadata
|
|
|
|
name=meson-python
|
|
version=0.16.0
|
|
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
|
|
}
|