contrib/python3-cython/Pkgfile

22 lines
610 B
Plaintext
Raw Normal View History

2024-05-06 23:16:16 +02:00
# Description: C extensions for Python
2024-03-06 19:03:21 +01:00
# URL: https://www.cython.org/
2023-05-27 10:03:11 +02:00
# Maintainer: Tim Biermann, tbier at posteo dot de
2023-08-26 10:09:26 +02:00
# Depends on: python3-build python3-installer python3-wheel
2018-08-15 13:45:16 +02:00
name=python3-cython
2024-03-31 22:19:11 +02:00
version=3.0.10
2018-08-15 13:45:16 +02:00
release=1
2023-05-27 10:03:11 +02:00
source=(https://pypi.org/packages/source/C/Cython/Cython-$version.tar.gz)
2018-08-15 13:45:16 +02:00
build() {
2023-05-27 10:03:11 +02:00
cd Cython-$version
2018-08-15 13:45:16 +02:00
2023-07-23 17:05:22 +02:00
/usr/bin/python3 -m build --wheel --skip-dependency-check --no-isolation
/usr/bin/python3 -m installer --compile-bytecode 2 --destdir=$PKG dist/*.whl
2023-05-27 10:03:11 +02:00
for f in cygdb cython cythonize; do
mv $PKG/usr/bin/$f $PKG/usr/bin/${f}3
2024-05-06 23:16:16 +02:00
ln -s ${f}3 $PKG/usr/bin/$f
2023-05-27 10:03:11 +02:00
done
2018-08-15 13:45:16 +02:00
}