SRCBUILD (451B)
1 # Maintainer: Christoph Lohmann <20h@r-36.net> 2 # 3 # http://www.cython.org 4 # 5 6 version=0.20.1 7 description="C-Extensions for Python" 8 depends=('python') 9 makedepends=('python-distribute') 10 sources=("http://www.cython.org/release/Cython-$version.tar.gz") 11 12 src_compile() { 13 cd "$SOURCE_DIR/Cython-$version" 14 python setup.py build 15 } 16 17 src_install() { 18 cd "$SOURCE_DIR/Cython-$version" 19 python setup.py install --prefix=/usr --root="$INSTALL_DIR" --optimize=1 20 } 21