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
)
54 lines
2.1 KiB
Python
54 lines
2.1 KiB
Python
""" ifaddrs for Android
|
|
"""
|
|
from os.path import join, exists
|
|
import sh
|
|
from pythonforandroid.logger import info, shprint
|
|
from pythonforandroid.recipe import CompiledComponentsPythonRecipe
|
|
from pythonforandroid.toolchain import current_directory
|
|
|
|
|
|
class IFAddrRecipe(CompiledComponentsPythonRecipe):
|
|
version = '8f9a87c'
|
|
url = 'https://github.com/morristech/android-ifaddrs/archive/{version}.zip'
|
|
depends = [('hostpython2', 'hostpython3')]
|
|
|
|
call_hostpython_via_targetpython = False
|
|
site_packages_name = 'ifaddrs'
|
|
generated_libraries = ['libifaddrs.so']
|
|
|
|
def prebuild_arch(self, arch):
|
|
"""Make the build and target directories"""
|
|
path = self.get_build_dir(arch.arch)
|
|
if not exists(path):
|
|
info("creating {}".format(path))
|
|
shprint(sh.mkdir, '-p', path)
|
|
|
|
def build_arch(self, arch):
|
|
"""simple shared compile"""
|
|
env = self.get_recipe_env(arch, with_flags_in_cc=False)
|
|
for path in (
|
|
self.get_build_dir(arch.arch),
|
|
join(self.ctx.python_recipe.get_build_dir(arch.arch), 'Lib'),
|
|
join(self.ctx.python_recipe.get_build_dir(arch.arch), 'Include')):
|
|
if not exists(path):
|
|
info("creating {}".format(path))
|
|
shprint(sh.mkdir, '-p', path)
|
|
cli = env['CC'].split()[0]
|
|
# makes sure first CC command is the compiler rather than ccache, refs:
|
|
# https://github.com/kivy/python-for-android/issues/1398
|
|
if 'ccache' in cli:
|
|
cli = env['CC'].split()[1]
|
|
cc = sh.Command(cli)
|
|
|
|
with current_directory(self.get_build_dir(arch.arch)):
|
|
cflags = env['CFLAGS'].split()
|
|
cflags.extend(['-I.', '-c', '-l.', 'ifaddrs.c', '-I.'])
|
|
shprint(cc, *cflags, _env=env)
|
|
cflags = env['CFLAGS'].split()
|
|
cflags.extend(['-shared', '-I.', 'ifaddrs.o', '-o', 'libifaddrs.so'])
|
|
cflags.extend(env['LDFLAGS'].split())
|
|
shprint(cc, *cflags, _env=env)
|
|
shprint(sh.cp, 'libifaddrs.so', self.ctx.get_libs_dir(arch.arch))
|
|
|
|
|
|
recipe = IFAddrRecipe()
|