-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1583 from opacam/rework-zbar
[WIP] Rework zbar (add python3 compatibility + add recipes: pyzbar and zbarlight)
- Loading branch information
Showing
4 changed files
with
61 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
from os.path import join | ||
from pythonforandroid.recipe import PythonRecipe | ||
|
||
|
||
class PyZBarRecipe(PythonRecipe): | ||
|
||
version = '0.1.7' | ||
|
||
url = 'https://github.com/NaturalHistoryMuseum/pyzbar/archive/v{version}.tar.gz' # noqa | ||
|
||
call_hostpython_via_targetpython = False | ||
|
||
depends = ['setuptools', 'libzbar'] | ||
|
||
def get_recipe_env(self, arch=None, with_flags_in_cc=True): | ||
env = super(PyZBarRecipe, 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' + join(libzbar_dir, 'include') | ||
env['LDFLAGS'] += ' -L' + join(libzbar_dir, 'zbar', '.libs') | ||
env['LIBS'] = env.get('LIBS', '') + ' -landroid -lzbar' | ||
return env | ||
|
||
|
||
recipe = PyZBarRecipe() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
from os.path import join | ||
from pythonforandroid.recipe import PythonRecipe | ||
|
||
|
||
class ZBarLightRecipe(PythonRecipe): | ||
|
||
version = '2.1' | ||
|
||
url = 'https://github.com/Polyconseil/zbarlight/archive/{version}.tar.gz' # noqa | ||
|
||
call_hostpython_via_targetpython = False | ||
|
||
depends = ['setuptools', 'libzbar'] | ||
|
||
def get_recipe_env(self, arch=None, with_flags_in_cc=True): | ||
env = super(ZBarLightRecipe, 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' + join(libzbar_dir, 'include') | ||
env['LDFLAGS'] += ' -L' + join(libzbar_dir, 'zbar', '.libs') | ||
env['LIBS'] = env.get('LIBS', '') + ' -landroid -lzbar' | ||
return env | ||
|
||
|
||
recipe = ZBarLightRecipe() |