new package: add package 'wokkel'

Signed-off-by: Stephan Raue <stephan@openelec.tv>
This commit is contained in:
Stephan Raue 2010-07-25 15:57:20 +02:00
parent 601837d2e4
commit 085586f60c
3 changed files with 35 additions and 0 deletions

View File

@ -0,0 +1,16 @@
#!/bin/sh
. config/options $1
. config/options.python
cd $PKG_BUILD
$PYTHON setup.py build
$PYTHON setup.py install -O1 --skip-build --root $SYSROOT_PREFIX --prefix /usr
$PYTHON setup.py install -O1 --skip-build --root ./.install --prefix /usr
find .install -name "*.py" -exec rm -rf "{}" ";"
find .install -name "*.pyo" -exec rm -rf "{}" ";"
rm -rf .install/usr/lib/python*/site-packages/wokkel/test

View File

@ -0,0 +1,5 @@
#!/bin/sh
. config/options $1
cp -PR $PKG_BUILD/.install/* $INSTALL

View File

@ -0,0 +1,14 @@
PKG_NAME="wokkel"
PKG_VERSION="0.6.3"
PKG_REV="1"
PKG_ARCH="any"
PKG_LICENSE="free"
PKG_SITE="http://wokkel.ik.nu/"
PKG_URL="http://wokkel.ik.nu/releases/$PKG_VERSION/$PKG_NAME-$PKG_VERSION.tar.gz"
PKG_DEPENDS="Python setuptools TwistedWords"
PKG_BUILD_DEPENDS="toolchain Python setuptools TwistedWords"
PKG_PRIORITY="optional"
PKG_SECTION="python/web"
PKG_SHORTDESC="wokkel: Wokkel is a Python module for experimenting with future enhancements to TwistedWords"
PKG_LONGDESC="Wokkel is collection of enhancements on top of the Twisted networking framework, written in Python. It mostly provides a testing ground for enhancements to the Jabber/XMPP protocol implementation as found in Twisted Words, that are meant to eventually move there."
PKG_IS_ADDON="no"