File tree Expand file tree Collapse file tree 1 file changed +30
-0
lines changed Expand file tree Collapse file tree 1 file changed +30
-0
lines changed Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+
3
+ VERSION_greenlet=0.4.1
4
+ URL_greenlet=https://pypi.python.org/packages/source/g/greenlet/greenlet-$VERSION_greenlet .zip
5
+ https://github.com/downloads/greenlet/greenlet/greenlet-$VERSION_greenlet .tar.gz
6
+ DEPS_greenlet=(python)
7
+ MD5_greenlet=c2deda75bdda59c38cae12a77cc53adc
8
+ BUILD_greenlet=$BUILD_PATH /greenlet/$( get_directory $URL_greenlet )
9
+ RECIPE_greenlet=$RECIPES_PATH /greenlet
10
+
11
+ function prebuild_greenlet() {
12
+ true
13
+ }
14
+
15
+ function build_greenlet() {
16
+ cd $BUILD_greenlet
17
+
18
+ if [ -d " $BUILD_PATH /python-install/lib/python2.7/site-packages/greenlet.so" ]; then
19
+ return
20
+ fi
21
+
22
+ push_arm
23
+
24
+ try $BUILD_PATH /python-install/bin/python.host setup.py install -O2
25
+ pop_arm
26
+ }
27
+
28
+ function postbuild_greenlet() {
29
+ true
30
+ }
You can’t perform that action at this time.
0 commit comments