blob: a6b04dc5fc9e248be52d6e5fdfcdd2fcd66f3167 (
plain)
1 # Description: Python event-driven networking framework.
2 # URL: http://www.twistedmatrix.com/
3 # Maintainer: Danny Rawlins, crux at romster dot me
4 # Depends on: python-Automat python-constantly python-hyperlink python-incremental python-zope-interface
5
6 name=python-twisted
7 version=19.2.1
8 release=1
9 source=(https://github.com/twisted/twisted/archive/twisted-$version.tar.gz)
10
11 build() {
12 cd twisted-twisted-$version
13 /usr/bin/python setup.py build
14 /usr/bin/python setup.py install --root=$PKG --optimize=1
15 }
|