Advertisement
chmurli

Untitled

Apr 2nd, 2013
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.78 KB | None | 0 0
  1. # Maintainer: Antoine Pierlot-Garcin <antoine at bokbox dot com>
  2. pkgname=python2-pykka
  3. pkgver=1.1.0
  4. pkgrel=1
  5. pkgdesc="Easy to use concurrency abstractions for Python using the actor model"
  6. arch=('any')
  7. url="http://pykka.readthedocs.org/"
  8. license=('Apache')
  9. depends=('python2')
  10. #makedepends=('')
  11. optdepends=('python2-gevent: Use gevent based actors from pykka.gevent')
  12. provides=('python2-pykka')
  13. conflicts=('python2-pykka-git')
  14. source=("http://pypi.python.org/packages/source/P/Pykka/Pykka-$pkgver.tar.gz")
  15. sha256sums=('3cfe14a37a3a755797a2ad6acb668ac2f9337a9e51f1d09a12b9747faa0db444')
  16.  
  17. package() {
  18.   cd "$srcdir/Pykka-$pkgver"
  19.   python2 setup.py install --prefix=/usr --root="$pkgdir"/ --optimize=1
  20.   install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement