File tree Expand file tree Collapse file tree 1 file changed +35
-0
lines changed
Expand file tree Collapse file tree 1 file changed +35
-0
lines changed Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+
3+ VERSION_kivent=1.0.0
4+ URL_kivent=https://github.com/Kovak/KivEnt/archive/master.zip
5+ MD5_kivent=
6+ DEPS_kivent=(python cymunk kivy)
7+ BUILD_kivent=$BUILD_PATH /kivent/master/kivent/
8+ RECIPE_kivent=$RECIPES_PATH /kivent
9+
10+ function prebuild_kivent() {
11+ true
12+ }
13+
14+ function build_kivent() {
15+ cd $BUILD_kivent
16+
17+ push_arm
18+
19+ export LDSHARED=" $LIBLINK "
20+ export PYTHONPATH=$BUILD_kivy /:$PYTHONPATH
21+ export PYTHONPATH=$BUILD_cymunk /cymunk/python:$PYTHONPATH
22+ try find . -iname ' __init__.pyx' -exec $CYTHON {} \;
23+ try $BUILD_PATH /python-install/bin/python.host setup.py build_ext -v
24+ try find build/lib.* -name " *.o" -exec $STRIP {} \;
25+
26+ export PYTHONPATH=$BUILD_hostpython /Lib/site-packages
27+ try $BUILD_hostpython /hostpython setup.py install -O2 --root=$BUILD_PATH /python-install --install-lib=lib/python2.7/site-packages
28+
29+ unset LDSHARED
30+ pop_arm
31+ }
32+
33+ function postbuild_kivent() {
34+ true
35+ }
You can’t perform that action at this time.
0 commit comments