File tree 1 file changed +29
-0
lines changed
1 file changed +29
-0
lines changed Original file line number Diff line number Diff line change
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
+ }
You can’t perform that action at this time.
0 commit comments