File tree Expand file tree Collapse file tree 1 file changed +28
-0
lines changed Expand file tree Collapse file tree 1 file changed +28
-0
lines changed Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+
3
+ VERSION_txws=0.7
4
+ URL_txws=http://pypi.python.org/packages/source/t/txWS/txWS-$VERSION_txws .tar.gz
5
+ DEPS_txws=(twisted)
6
+ MD5_txws=e8f5fb03c189d83b47b21176c7574126
7
+ BUILD_txws=$BUILD_PATH /txws/$( get_directory $URL_txws )
8
+ RECIPE_txws=$RECIPES_PATH /txws
9
+
10
+ function prebuild_txws() {
11
+ true
12
+ }
13
+
14
+ function build_txws() {
15
+ if [ -d " $BUILD_PATH /python-install/lib/python2.7/site-packages/txws" ]; then
16
+ return
17
+ fi
18
+ cd $BUILD_txws
19
+ push_arm
20
+ export PYTHONPATH=$BUILD_PATH /hostpython/Python-2.7.2/Lib/site-packages
21
+ 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
22
+ pop_arm
23
+ }
24
+
25
+ function postbuild_txws() {
26
+ true
27
+ }
28
+
You can’t perform that action at this time.
0 commit comments