blob: 683e31537cb157f031ee49762a4a94a222ede852 (
plain)
1 # Description: Python event-driven networking framework.
2 # URL: http://www.twistedmatrix.com/
3 # Maintainer: Danny Rawlins, monster dot romster at gmail dot com
4 # Packager: Younes Hafri, ycrux at club-internet dot fr
5 # Depends on: zope.interface pycrypto
6
7 name=twisted
8 version=13.1.0
9 release=1
10 source=(http://pypi.python.org/packages/source/T/Twisted/Twisted-$version.tar.bz2)
11
12 build() {
13 cd Twisted-$version
14 /usr/bin/python setup.py install --root=$PKG
15
16 find $PKG \
17 -name README -o \
18 -name README.txt -o \
19 -name NEWS -o \
20 -name CREDITS | xargs rm
21 }
|