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)
60 lines
2.2 KiB
Python
60 lines
2.2 KiB
Python
from pythonforandroid.recipe import Recipe
|
|
from pythonforandroid.toolchain import shprint, shutil, current_directory
|
|
from os.path import exists, join
|
|
import sh
|
|
|
|
|
|
class Libxml2Recipe(Recipe):
|
|
version = '2.9.8'
|
|
url = 'http://xmlsoft.org/sources/libxml2-{version}.tar.gz'
|
|
depends = []
|
|
patches = ['add-glob.c.patch']
|
|
|
|
def should_build(self, arch):
|
|
super(Libxml2Recipe, self).should_build(arch)
|
|
return not exists(
|
|
join(self.get_build_dir(arch.arch), '.libs', 'libxml2.a'))
|
|
|
|
def build_arch(self, arch):
|
|
super(Libxml2Recipe, self).build_arch(arch)
|
|
env = self.get_recipe_env(arch)
|
|
with current_directory(self.get_build_dir(arch.arch)):
|
|
|
|
if not exists('configure'):
|
|
shprint(sh.Command('./autogen.sh'), _env=env)
|
|
shprint(sh.Command('autoreconf'), '-vif', _env=env)
|
|
build_arch = shprint(
|
|
sh.gcc, '-dumpmachine').stdout.decode('utf-8').split('\n')[0]
|
|
shprint(sh.Command('./configure'),
|
|
'--build=' + build_arch,
|
|
'--host=' + arch.command_prefix,
|
|
'--target=' + arch.command_prefix,
|
|
'--without-modules',
|
|
'--without-legacy',
|
|
'--without-history',
|
|
'--without-debug',
|
|
'--without-docbook',
|
|
'--without-python',
|
|
'--without-threads',
|
|
'--without-iconv',
|
|
'--without-lzma',
|
|
'--disable-shared',
|
|
'--enable-static',
|
|
_env=env)
|
|
|
|
# Ensure we only build libxml2.la as if we do everything
|
|
# we'll need the glob dependency which is a big headache
|
|
shprint(sh.make, "libxml2.la", _env=env)
|
|
|
|
shutil.copyfile('.libs/libxml2.a',
|
|
join(self.ctx.libs_dir, 'libxml2.a'))
|
|
|
|
def get_recipe_env(self, arch):
|
|
env = super(Libxml2Recipe, self).get_recipe_env(arch)
|
|
env['CONFIG_SHELL'] = '/bin/bash'
|
|
env['SHELL'] = '/bin/bash'
|
|
env['CC'] += ' -I' + self.get_build_dir(arch.arch)
|
|
return env
|
|
|
|
|
|
recipe = Libxml2Recipe()
|