summaryrefslogtreecommitdiff
path: root/python3-cython/Pkgfile
blob: a22593e9e521bfa3040ef678928cef98bb93bb2a (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.33
    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 }

Generated by cgit