2007-04-21 22:21:54 +10:00
|
|
|
# Description: Python event-driven networking framework.
|
|
|
|
# URL: http://www.twistedmatrix.com/
|
2008-02-04 12:24:53 +11:00
|
|
|
# Maintainer: Lucas Hazel, lucas at die dot net dot au
|
2007-04-21 22:21:54 +10:00
|
|
|
# Packager: Younes Hafri, ycrux at club-internet dot fr
|
2008-04-06 13:18:43 +10:00
|
|
|
# Depends on: zopeinterface, pycrypto
|
|
|
|
# Nice to have: pyserial, pyopenssl
|
2007-04-21 22:21:54 +10:00
|
|
|
|
|
|
|
name=twisted
|
2009-12-12 11:28:39 +11:00
|
|
|
version=9.0.0
|
2009-01-28 21:17:08 +11:00
|
|
|
release=1
|
2007-04-21 22:21:54 +10:00
|
|
|
source=(http://tmrc.mit.edu/mirror/twisted/Twisted/${version::3}/Twisted-$version.tar.bz2)
|
|
|
|
|
|
|
|
build() {
|
|
|
|
cd Twisted-$version
|
2008-04-06 13:18:43 +10:00
|
|
|
python setup.py install --root=$PKG
|
2008-07-11 22:28:46 +10:00
|
|
|
find $PKG -name '*.egg-info' \
|
|
|
|
-o -name topfiles \
|
|
|
|
| xargs rm -rf
|
2007-04-21 22:21:54 +10:00
|
|
|
}
|
|
|
|
|