16 lines
430 B
Plaintext
16 lines
430 B
Plaintext
# Description: A language that lets writing C extensions for the Python language.
|
|
# URL: http://www.cython.org/
|
|
# Maintainer: Danny Rawlins, monster dot romster at gmail dot com
|
|
# Packager: Victor Martinez, pitillo at ono dot com
|
|
# Depends on: python
|
|
|
|
name=cython
|
|
version=0.17.4
|
|
release=1
|
|
source=(http://www.cython.org/release/Cython-$version.tar.gz)
|
|
|
|
build() {
|
|
cd Cython-$version
|
|
/usr/bin/python setup.py install --root $PKG
|
|
}
|