wok-stable annotate twisted/receipt @ rev 9828
Up: grep to 2.8.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Sun May 15 12:01:44 2011 +0000 (2011-05-15) |
parents | 47aff52eae00 |
children | 01b227722187 |
rev | line source |
---|---|
pascal@2149 | 1 # SliTaz package receipt. |
pascal@2149 | 2 |
pascal@2149 | 3 PACKAGE="twisted" |
slaxemulator@7508 | 4 VERSION="10.2.0" |
pascal@2149 | 5 CATEGORY="network" |
pascal@2149 | 6 SHORT_DESC="Event-driven networking for internet applications." |
pascal@2149 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@2149 | 8 SOURCE="Twisted" |
pascal@2149 | 9 TARBALL="$SOURCE-$VERSION.tar.bz2" |
pascal@2149 | 10 WEB_SITE="http://twistedmatrix.com/trac/" |
pascal@2149 | 11 WGET_URL="http://tmrc.mit.edu/mirror/$PACKAGE/$SOURCE/${VERSION%.*}/$TARBALL" |
pascal@2149 | 12 DEPENDS="python zopeinterface" |
slaxemulator@6427 | 13 BUILD_DEPENDS="python python-dev" |
pascal@2149 | 14 |
pascal@2149 | 15 # Rules to configure and make the package. |
pascal@2149 | 16 compile_rules() |
pascal@2149 | 17 { |
pascal@2149 | 18 cd $src |
pascal@2149 | 19 python setup.py build && python setup.py install --root=$PWD/_pkg |
pascal@2149 | 20 } |
pascal@2149 | 21 |
pascal@2149 | 22 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@2149 | 23 genpkg_rules() |
pascal@2149 | 24 { |
pascal@2149 | 25 cp -a $_pkg/usr $fs |
pascal@2149 | 26 } |
pascal@2149 | 27 |