diff options
author | root <root@rshg054.dnsready.net> | 2011-12-22 23:15:05 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2011-12-22 23:15:05 +0000 |
commit | 34e6c976d28892a7bd3f7578f10fcfa57865472f (patch) | |
tree | c3bd6b5146aa6393df096632e92c57d0fcd4e85a /community/python-pyzmq | |
parent | 69d24275e4d5296a5f02e4c4d0fc438a80d159b8 (diff) |
Thu Dec 22 23:15:04 UTC 2011
Diffstat (limited to 'community/python-pyzmq')
-rw-r--r-- | community/python-pyzmq/PKGBUILD | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/community/python-pyzmq/PKGBUILD b/community/python-pyzmq/PKGBUILD new file mode 100644 index 000000000..d957ed58f --- /dev/null +++ b/community/python-pyzmq/PKGBUILD @@ -0,0 +1,17 @@ +# $Id: PKGBUILD 61127 2011-12-22 03:57:10Z kkeen $ +# Maintainer: Kyle Keen <keenerd at gmail dot com> +pkgname=python-pyzmq +pkgver=2.1.11 +pkgrel=1 +pkgdesc="Python3 bindings for zeromq, written in Cython" +arch=(i686 x86_64) +url="http://www.zeromq.org/bindings:python" +license=('LGPL') +depends=(zeromq python) +source=(https://github.com/zeromq/pyzmq/downloads/pyzmq-$pkgver.tar.gz) +md5sums=('8ce303d022a1043669d4f239cddca746') + +build() { + cd "$srcdir/pyzmq-$pkgver" + python3 setup.py install --root="$pkgdir" --optimize=1 +} |