How to use the python-for-android.recipes.zbar.__init__.ZBarRecipe function in python-for-android

To help you get started, we’ve selected a few python-for-android examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github kivy-garden / zbarcam / python-for-android / recipes / zbar / __init__.py View on Github external
def get_recipe_env(self, arch=None, with_flags_in_cc=True):
        env = super(ZBarRecipe, self).get_recipe_env(arch, with_flags_in_cc)
        libzbar = self.get_recipe('libzbar', self.ctx)
        libzbar_dir = libzbar.get_build_dir(arch.arch)
        env['PYTHON_ROOT'] = self.ctx.get_python_install_dir()
        env['CFLAGS'] += ' -I' + os.path.join(libzbar_dir, 'include')
        env['CFLAGS'] += ' -I' + env['PYTHON_ROOT'] + '/include/python2.7'
        # TODO
        env['LDSHARED'] = env['CC'] + \
            ' -pthread -shared -Wl,-O1 -Wl,-Bsymbolic-functions'
        # TODO: hardcoded Python version
        env['LDFLAGS'] += " -landroid -lpython2.7 -lzbar"
        return env


recipe = ZBarRecipe()
github kivy-garden / zbarcam / python-for-android / recipes / zbar / __init__.py View on Github external
def get_recipe_env(self, arch=None, with_flags_in_cc=True):
        env = super(ZBarRecipe, self).get_recipe_env(arch, with_flags_in_cc)
        libzbar = self.get_recipe('libzbar', self.ctx)
        libzbar_dir = libzbar.get_build_dir(arch.arch)
        env['PYTHON_ROOT'] = self.ctx.get_python_install_dir()
        env['CFLAGS'] += ' -I' + os.path.join(libzbar_dir, 'include')
        env['CFLAGS'] += ' -I' + env['PYTHON_ROOT'] + '/include/python2.7'
        # TODO
        env['LDSHARED'] = env['CC'] + \
            ' -pthread -shared -Wl,-O1 -Wl,-Bsymbolic-functions'
        # TODO: hardcoded Python version
        env['LDFLAGS'] += " -landroid -lpython2.7 -lzbar"
        return env

python-for-android

A development tool that packages Python apps into binaries that can run on Android devices.

MIT
Latest version published 4 months ago

Package Health Score

81 / 100
Full package analysis

Similar packages