#!/bin/bash
VERSION_processimage=0.1DEPS_processimage=(android)MD5_processimage=BUILD_processimage=/home/ogh/projects/Android/myappRECIPE_processimage=$RECIPES_PATH/processimage
function prebuild_processimage() { true}
function shouldbuild_processimage() { if [ -d "$SITEPACKAGES_PATH/processimage" ]; then DO_BUILD=0 fi}
function build_processimage() { cd $BUILD_processimage
push_arm
export LDFLAGS="$LDFLAGS -L$LIBS_PATH" export LDSHARED="$LIBLINK"
# fake try to be able to cythonize generated files
cython $BUILD_processimage/processimage.pyx $HOSTPYTHON setup.py build_ext --inplace try $HOSTPYTHON setup.py install -O2
unset LDSHARED pop_arm}
function postbuild_processimage() { true}from distutils.core import setupfrom distutils.extension import Extension
setup( name='processimage', ext_modules = [Extension("processimage", ["processimage.c"], extra_compile_args=['-std=c99'] )])--
You received this message because you are subscribed to a topic in the Google Groups "Kivy users support" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/kivy-users/2dnyeFDWNTw/unsubscribe.
To unsubscribe from this group and all its topics, send an email to kivy-users+...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
To unsubscribe from this group and all its topics, send an email to kivy-users+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
-Brent
To unsubscribe from this group and all its topics, send an email to kivy-...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.