diff options
author | root <root@rshg054.dnsready.net> | 2013-08-11 01:21:34 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-08-11 01:21:34 -0700 |
commit | 18a41d682d6e91e0d28fce23eb75292f477bd620 (patch) | |
tree | bce8f660d7d0b6541cadbc49bf1bac2434e4c0c6 /community/cython | |
parent | 0ade1da67addf154d93c6a6399b0a3d5a18a3336 (diff) |
Sun Aug 11 01:21:31 PDT 2013
Diffstat (limited to 'community/cython')
-rw-r--r-- | community/cython/PKGBUILD | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/community/cython/PKGBUILD b/community/cython/PKGBUILD deleted file mode 100644 index 6924be749..000000000 --- a/community/cython/PKGBUILD +++ /dev/null @@ -1,38 +0,0 @@ -# $Id: PKGBUILD 91947 2013-05-30 09:41:33Z spupykin $ -# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> -# Contributor: Igor Scabini <furester @ gmail.com> - -pkgname=('cython' 'cython2') -pkgbase=cython -pkgver=0.19.1 -pkgrel=1 -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=('df4cfb2b8e3345272e3fc451b76bd630') - -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 -} |