8b2694efb7
* fix build for openssl 1.1.1b required for sdk (cherry picked from commitaa49e3b275
) * use js code from master * fix openssl recipe and tweak build (cherry picked from commit6e94c27021
) * remove unused build recipes (cherry picked from commitf5c0577bdb
)
26 lines
963 B
Python
26 lines
963 B
Python
from pythonforandroid.recipe import CythonRecipe
|
|
|
|
|
|
class ScryptRecipe(CythonRecipe):
|
|
|
|
version = '0.8.6'
|
|
url = 'https://bitbucket.org/mhallin/py-scrypt/get/v{version}.zip'
|
|
depends = ['setuptools', 'openssl']
|
|
call_hostpython_via_targetpython = False
|
|
patches = ["remove_librt.patch"]
|
|
|
|
def get_recipe_env(self, arch, with_flags_in_cc=True):
|
|
"""
|
|
Adds openssl recipe to include and library path.
|
|
"""
|
|
env = super(ScryptRecipe, self).get_recipe_env(arch, with_flags_in_cc)
|
|
openssl_recipe = self.get_recipe('openssl', self.ctx)
|
|
env['CFLAGS'] += openssl_recipe.include_flags(arch)
|
|
env['LDFLAGS'] += ' -L{}'.format(self.ctx.get_libs_dir(arch.arch))
|
|
env['LDFLAGS'] += ' -L{}'.format(self.ctx.libs_dir)
|
|
env['LDFLAGS'] += openssl_recipe.link_dirs_flags(arch)
|
|
env['LIBS'] = env.get('LIBS', '') + openssl_recipe.link_libs_flags()
|
|
return env
|
|
|
|
|
|
recipe = ScryptRecipe()
|