diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /community/cython |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/cython')
-rw-r--r-- | community/cython/PKGBUILD | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/community/cython/PKGBUILD b/community/cython/PKGBUILD new file mode 100644 index 000000000..84cb89e10 --- /dev/null +++ b/community/cython/PKGBUILD @@ -0,0 +1,19 @@ +# $Id: PKGBUILD 39526 2011-02-11 12:10:41Z spupykin $ +# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> +# Contributor: Igor Scabini <furester @ gmail.com> + +pkgname=cython +pkgver=0.14.1 +pkgrel=1 +pkgdesc="C-Extensions for Python " +arch=(i686 x86_64) +url="http://www.cython.org" +license=('APACHE') +depends=('python2') +source=("http://cython.org/release/Cython-$pkgver.tar.gz") +md5sums=('6341bf3b2c49a39b8046219f6696f5c4') + +build() { + cd $srcdir/Cython-$pkgver + python2 setup.py install --root=$pkgdir +} |