17 lines
367 B
Plaintext
17 lines
367 B
Plaintext
# Description: C extensions for Python.
|
|
# URL: http://www.cython.org/
|
|
# Packager: milisarge
|
|
# Depends on: python python3 python-setuptools
|
|
|
|
name=cython
|
|
version=0.24
|
|
release=2
|
|
source=(https://github.com/cython/cython/archive/$version.tar.gz)
|
|
|
|
|
|
build() {
|
|
cd $name-$version
|
|
/usr/bin/python setup.py install --root $PKG
|
|
/usr/bin/python3 setup.py install --root $PKG
|
|
}
|