diff options
Diffstat (limited to 'community/cython/PKGBUILD')
-rw-r--r-- | community/cython/PKGBUILD | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/community/cython/PKGBUILD b/community/cython/PKGBUILD index caf0c6d34..f01ceccfd 100644 --- a/community/cython/PKGBUILD +++ b/community/cython/PKGBUILD @@ -1,11 +1,11 @@ -# $Id: PKGBUILD 104512 2014-01-22 06:54:53Z spupykin $ +# $Id: PKGBUILD 105228 2014-02-03 09:20:50Z spupykin $ # Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> # Contributor: Igor Scabini <furester @ gmail.com> pkgname=('cython' 'cython2') pkgbase=cython pkgver=0.20 -pkgrel=1 +pkgrel=2 pkgdesc="C-Extensions for Python " arch=(i686 x86_64) url="http://www.cython.org" @@ -14,12 +14,8 @@ makedepends=('python-setuptools' 'python2-setuptools') source=("http://cython.org/release/Cython-$pkgver.tar.gz") md5sums=('6563dad21e2b5e31f9f7262a60dd0550') -build() { - true -} - package_cython() { - depends=('python') + depends=('python' 'python-setuptools') cd $srcdir/Cython-$pkgver python setup.py install --root=$pkgdir @@ -28,7 +24,7 @@ package_cython() { } package_cython2() { - depends=('python2') + depends=('python2' 'python2-setuptools') cd $srcdir/Cython-$pkgver python2 setup.py install --root=$pkgdir |