Skip to content

Commit 5958802

Browse files
author
Ryan Northey
committed
added wokkel twisted XMPP lib
1 parent ad85862 commit 5958802

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

recipes/wokkel/recipe.sh

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
#!/bin/bash
2+
3+
VERSION_wokkel=0.7.0
4+
URL_wokkel=http://pypi.python.org/packages/source/w/wokkel/wokkel-$VERSION_wokkel.tar.gz
5+
DEPS_wokkel=(setuptools twisted)
6+
MD5_wokkel=fffc7bf564cf1d7d1ccaa6c5d18d6a76
7+
BUILD_wokkel=$BUILD_PATH/wokkel/$(get_directory $URL_wokkel)
8+
RECIPE_wokkel=$RECIPES_PATH/wokkel
9+
10+
function prebuild_wokkel() {
11+
true
12+
}
13+
14+
function build_wokkel() {
15+
if [ -d "$BUILD_PATH/python-install/lib/python2.7/site-packages/wokkel" ]; then
16+
return
17+
fi
18+
19+
cd $BUILD_wokkel
20+
21+
push_arm
22+
export PYTHONPATH=$BUILD_PATH/hostpython/Python-2.7.2/Lib/site-packages
23+
try $BUILD_PATH/hostpython/Python-2.7.2/hostpython setup.py install -O2 --root=$BUILD_PATH/python-install --install-lib=lib/python2.7/site-packages
24+
pop_arm
25+
}
26+
27+
function postbuild_wokkel() {
28+
true
29+
}

0 commit comments

Comments
 (0)