2011-01-09 18:45:03 +01:00
################################################################################
# This file is part of OpenELEC - http://www.openelec.tv
2013-12-21 21:51:48 +01:00
# Copyright (C) 2009-2014 Stephan Raue (stephan@openelec.tv)
2011-01-09 18:45:03 +01:00
#
2013-12-21 21:51:48 +01:00
# OpenELEC is free software: you can redistribute it and/or modify
2011-01-09 18:45:03 +01:00
# it under the terms of the GNU General Public License as published by
2013-12-21 21:51:48 +01:00
# the Free Software Foundation, either version 2 of the License, or
# (at your option) any later version.
2011-01-09 18:45:03 +01:00
#
2013-12-21 21:51:48 +01:00
# OpenELEC is distributed in the hope that it will be useful,
2011-01-09 18:45:03 +01:00
# but WITHOUT ANY WARRANTY; without even the implied warranty of
2013-12-21 21:51:48 +01:00
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
2011-01-09 18:45:03 +01:00
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
2013-12-21 21:51:48 +01:00
# along with OpenELEC. If not, see <http://www.gnu.org/licenses/>.
2011-01-09 18:45:03 +01:00
################################################################################
2010-07-25 15:57:20 +02:00
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 "
2014-01-30 14:32:10 +01:00
PKG_DEPENDS_TARGET = "toolchain Python distutilscross:host TwistedWords"
2010-07-25 15:57:20 +02:00
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."
2010-11-25 18:16:40 +01:00
2014-01-21 18:26:32 +01:00
PKG_IS_ADDON = "no"
2010-11-25 18:16:40 +01:00
PKG_AUTORECONF = "no"
2014-01-21 18:26:32 +01:00
p r e _ m a k e _ t a r g e t ( ) {
export PYTHONXCPREFIX = " $SYSROOT_PREFIX /usr "
}
m a k e _ t a r g e t ( ) {
python setup.py build --cross-compile
}
m a k e i n s t a l l _ t a r g e t ( ) {
python setup.py install --root= $INSTALL --prefix= /usr
}
p o s t _ m a k e i n s t a l l _ t a r g e t ( ) {
find $INSTALL /usr/lib -name "*.py" -exec rm -rf "{}" ";"
rm -rf $INSTALL /usr/lib/python*/site-packages/wokkel/test
}