30 lines
1.5 KiB
Python
30 lines
1.5 KiB
Python
from pythonforandroid.recipe import CompiledComponentsPythonRecipe, Recipe
|
|
from os.path import dirname, join
|
|
|
|
class CryptographyRecipe(CompiledComponentsPythonRecipe):
|
|
name = 'cryptography'
|
|
version = '2.2.2'
|
|
url = 'https://github.com/pyca/cryptography/archive/{version}.tar.gz'
|
|
depends = [('python2', 'python3crystax'), 'openssl', 'idna', 'pyasn1', 'six', 'setuptools', 'enum34', 'ipaddress', 'cffi']
|
|
call_hostpython_via_targetpython = False
|
|
|
|
def get_recipe_env(self, arch):
|
|
env = super(CryptographyRecipe, self).get_recipe_env(arch)
|
|
r = self.get_recipe('openssl', self.ctx)
|
|
openssl_dir = r.get_build_dir(arch.arch)
|
|
target_python = Recipe.get_recipe('python2', self.ctx).get_build_dir(arch.arch)
|
|
env['PYTHON_ROOT'] = self.ctx.get_python_install_dir()
|
|
env['CFLAGS'] += ' -I' + env['PYTHON_ROOT'] + '/include/python2.7' + \
|
|
' -I' + join(openssl_dir, 'include') + \
|
|
' -I' + join(target_python, 'Modules/_ctypes/libffi_arm_wince')
|
|
# Set linker to use the correct gcc
|
|
env['LDSHARED'] = env['CC'] + ' -pthread -shared -Wl,-O1 -Wl,-Bsymbolic-functions'
|
|
env['LDFLAGS'] += ' -L' + env['PYTHON_ROOT'] + '/lib' + \
|
|
' -L' + openssl_dir + \
|
|
' -lpython2.7' + \
|
|
' -lssl' + r.version + \
|
|
' -lcrypto' + r.version
|
|
|
|
return env
|
|
|
|
recipe = CryptographyRecipe()
|