mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-10 13:34:50 +08:00
27 lines
708 B
Bash
27 lines
708 B
Bash
|
#
|
||
|
# Games Packages for Chakra, part of chakra-project.org
|
||
|
#
|
||
|
# Maintainer: Adrián Chaves Fernández (Gallaecio) <adriyetichaves gmail.com>
|
||
|
|
||
|
# include global config
|
||
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
||
|
|
||
|
pkgname=python-pyzmq
|
||
|
_pkgname=pyzmq
|
||
|
pkgver=2.1.7
|
||
|
pkgrel=1
|
||
|
pkgdesc="Python 2 bindings for zeromq, written in Cython."
|
||
|
arch=('i686' 'x86_64')
|
||
|
url="http://www.zeromq.org/bindings:python"
|
||
|
license=('LGPL')
|
||
|
depends=('python2' 'python-cython' 'zeromq')
|
||
|
source=(https://github.com/downloads/zeromq/$_pkgname/$_pkgname-$pkgver.tar.gz)
|
||
|
md5sums=('aa4d7d81ad3c93dc1efd195153cb71ae')
|
||
|
|
||
|
package() {
|
||
|
cd $srcdir/$_pkgname-$pkgver
|
||
|
python2 setup.py install \
|
||
|
--root=$pkgdir \
|
||
|
--optimize=1
|
||
|
}
|