mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-25 02:52:13 +08:00
28 lines
708 B
Bash
28 lines
708 B
Bash
#
|
|
# Apps Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# Maintainer: Daniele Cocca <jmc@chakra-project.org>
|
|
#
|
|
|
|
# include global config
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
|
|
|
_pkgname=eventlet
|
|
pkgname=python-eventlet
|
|
pkgver=0.9.16
|
|
pkgrel=1
|
|
pkgdesc="Eventlet is a networking library written in Python."
|
|
arch=('any')
|
|
license=('LGPL')
|
|
depends=('python' 'python-greenlet')
|
|
url="http://eventlet.net/"
|
|
source=("http://pypi.python.org/packages/source/e/${_pkgname}/${_pkgname}-${pkgver}.tar.gz")
|
|
md5sums=('4728e3bd7f72763c1e5dccac0296f8ea')
|
|
|
|
package() {
|
|
cd "${srcdir}/${_pkgname}-${pkgver}"
|
|
python2 setup.py install --prefix=/usr --root="${pkgdir}" || return 1
|
|
}
|
|
|
|
# vim:set ts=2 sw=2 et:
|