diff options
Diffstat (limited to 'community-testing/cython/PKGBUILD')
-rw-r--r-- | community-testing/cython/PKGBUILD | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/community-testing/cython/PKGBUILD b/community-testing/cython/PKGBUILD deleted file mode 100644 index 3e20aed0f..000000000 --- a/community-testing/cython/PKGBUILD +++ /dev/null @@ -1,38 +0,0 @@ -# $Id: PKGBUILD 78039 2012-10-16 11:50:02Z allan $ -# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> -# Contributor: Igor Scabini <furester @ gmail.com> - -pkgname=('cython' 'cython2') -pkgbase=cython -pkgver=0.17 -pkgrel=2 -pkgdesc="C-Extensions for Python " -arch=(i686 x86_64) -url="http://www.cython.org" -license=('APACHE') -makedepends=('python-distribute' 'python2-distribute') -source=("http://cython.org/release/Cython-$pkgver.tar.gz") -md5sums=('d6b669956b25babf7dd86db0a98539e4') - -build() { - true -} - -package_cython() { - depends=('python') - - cd $srcdir/Cython-$pkgver - python setup.py install --root=$pkgdir - - sed -i 's|#!.*python|#!/usr/bin/python3|' $pkgdir/usr/bin/* -} - -package_cython2() { - depends=('python2') - - cd $srcdir/Cython-$pkgver - python2 setup.py install --root=$pkgdir - - mv $pkgdir/usr/bin/cygdb $pkgdir/usr/bin/cygdb2 - mv $pkgdir/usr/bin/cython $pkgdir/usr/bin/cython2 -} |