blob: 5e9ff855d043be8a0d830e4ff92c5edc692860c4 (
plain)
1 # Description: C extensions for Python.
2 # URL: http://www.cython.org/
3 # Maintainer: Danny Rawlins, crux at romster dot me
4 # Depends on: python3-setuptools
5
6 name=python3-cython
7 version=0.29.24
8 release=1
9 source=(https://files.pythonhosted.org/packages/source/C/Cython/Cython-$version.tar.gz)
10
11 build() {
12 cd Cython-$version
13
14 /usr/bin/python3 setup.py build
15
16 /usr/bin/python3 setup.py install \
17 --prefix=/usr --root=$PKG --optimize=1
18
19 for f in cygdb cython cythonize; do
20 mv $PKG/usr/bin/$f $PKG/usr/bin/${f}3
21 done
22 }
|