8b2694efb7
* fix build for openssl 1.1.1b required for sdk (cherry picked from commit aa49e3b2755b97b6331cdbbb89efc954de8d5977) * use js code from master * fix openssl recipe and tweak build (cherry picked from commit 6e94c27021c7bd7b1e880c2fc314850e36a5a38e) * remove unused build recipes (cherry picked from commit f5c0577bdb175bfc0990602936bbc9e2052e1f25)
29 lines
1 KiB
Python
29 lines
1 KiB
Python
from pythonforandroid.recipe import CompiledComponentsPythonRecipe
|
|
import os
|
|
|
|
|
|
class PyNaCLRecipe(CompiledComponentsPythonRecipe):
|
|
name = 'pynacl'
|
|
version = '1.3.0'
|
|
url = 'https://pypi.python.org/packages/source/P/PyNaCl/PyNaCl-{version}.tar.gz'
|
|
|
|
depends = [('hostpython2', 'hostpython3'), 'six', 'setuptools', 'cffi', 'libsodium']
|
|
call_hostpython_via_targetpython = False
|
|
|
|
def get_recipe_env(self, arch):
|
|
env = super(PyNaCLRecipe, self).get_recipe_env(arch)
|
|
env['SODIUM_INSTALL'] = 'system'
|
|
|
|
libsodium_build_dir = self.get_recipe(
|
|
'libsodium', self.ctx).get_build_dir(arch.arch)
|
|
env['CFLAGS'] += ' -I{}'.format(os.path.join(libsodium_build_dir,
|
|
'src/libsodium/include'))
|
|
env['LDFLAGS'] += ' -L{}'.format(
|
|
self.ctx.get_libs_dir(arch.arch) +
|
|
'-L{}'.format(self.ctx.libs_dir)) + ' -L{}'.format(
|
|
libsodium_build_dir)
|
|
|
|
return env
|
|
|
|
|
|
recipe = PyNaCLRecipe()
|