How to use the python-for-android.recipes.libiconv.__init__.LibIconvRecipe 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 / libiconv / __init__.py View on Github external
def build_arch(self, arch):
        super(LibIconvRecipe, self).build_arch(arch)
        env = self.get_recipe_env(arch)
        with current_directory(self.get_build_dir(arch.arch)):
            shprint(
                sh.Command('./configure'),
                '--host=' + arch.toolchain_prefix,
                '--prefix=' + self.ctx.get_python_install_dir(),
                _env=env)
            shprint(sh.make, '-j' + str(cpu_count()), _env=env)
            libs = ['lib/.libs/libiconv.so']
            self.install_libs(arch, *libs)


recipe = LibIconvRecipe()
github kivy-garden / zbarcam / python-for-android / recipes / libiconv / __init__.py View on Github external
def build_arch(self, arch):
        super(LibIconvRecipe, self).build_arch(arch)
        env = self.get_recipe_env(arch)
        with current_directory(self.get_build_dir(arch.arch)):
            shprint(
                sh.Command('./configure'),
                '--host=' + arch.toolchain_prefix,
                '--prefix=' + self.ctx.get_python_install_dir(),
                _env=env)
            shprint(sh.make, '-j' + str(cpu_count()), _env=env)
            libs = ['lib/.libs/libiconv.so']
            self.install_libs(arch, *libs)

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