summaryrefslogtreecommitdiff
path: root/community/python2-pyzmq/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community/python2-pyzmq/PKGBUILD')
-rw-r--r--community/python2-pyzmq/PKGBUILD17
1 files changed, 17 insertions, 0 deletions
diff --git a/community/python2-pyzmq/PKGBUILD b/community/python2-pyzmq/PKGBUILD
new file mode 100644
index 000000000..8ac19b91b
--- /dev/null
+++ b/community/python2-pyzmq/PKGBUILD
@@ -0,0 +1,17 @@
+# Maintainer: Kyle Keen <keenerd at gmail dot com>
+pkgname=python2-pyzmq
+pkgver=2.1.11
+pkgrel=1
+pkgdesc="Python2 bindings for zeromq, written in Cython"
+arch=(i686 x86_64)
+url="http://www.zeromq.org/bindings:python"
+license=('LGPL')
+depends=(zeromq python2)
+source=(https://github.com/zeromq/pyzmq/downloads/pyzmq-$pkgver.tar.gz)
+md5sums=('8ce303d022a1043669d4f239cddca746')
+
+build() {
+ cd "$srcdir/pyzmq-$pkgver"
+ sed -i 's|^#!/usr/bin/env python$|&2|' $(find ./ -name '*.py')
+ python2 setup.py install --root="$pkgdir" --optimize=1
+}