diff --git a/packages/python/web/wokkel/build b/packages/python/web/wokkel/build new file mode 100755 index 0000000000..a117165e4e --- /dev/null +++ b/packages/python/web/wokkel/build @@ -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 \ No newline at end of file diff --git a/packages/python/web/wokkel/install b/packages/python/web/wokkel/install new file mode 100755 index 0000000000..9e41581031 --- /dev/null +++ b/packages/python/web/wokkel/install @@ -0,0 +1,5 @@ +#!/bin/sh + +. config/options $1 + +cp -PR $PKG_BUILD/.install/* $INSTALL \ No newline at end of file diff --git a/packages/python/web/wokkel/meta b/packages/python/web/wokkel/meta new file mode 100644 index 0000000000..34d71a447a --- /dev/null +++ b/packages/python/web/wokkel/meta @@ -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"