# -*- Mode: Python -*- vi:si:et:sw=4:sts=4:ts=4:syntax=python class Recipe(recipe.Recipe): name = 'libxml2' version = '2.9.7' stype = SourceType.TARBALL url = 'http://xmlsoft.org/sources/libxml2-%(version)s.tar.gz' licenses = [License.MIT] deps = [ 'zlib' ] autoreconf = True patches = ['libxml2/0003-configure-fix-python-dir-prefix.patch'] files_libs = ['libxml2'] files_devel = ['include/libxml2', 'lib/xml2Conf.sh', 'bin/xml2-config', 'lib/pkgconfig/libxml-2.0.pc', 'bin/xmllint%(bext)s'] def prepare(self): if self.config.target_platform == Platform.WINDOWS: self.configure_options = '--with-python=no' self.configure_options += ' --without-threads' elif self.config.target_platform == Platform.ANDROID: self.configure_options = '--with-python=no' v = DistroVersion.get_android_api_version(self.config.target_distro_version) if v < 21: self.new_env['CFLAGS'] = os.environ.get('CFLAGS', '') + ' -D_FILE_OFFSET_BITS=32' self.new_env['CPPFLAGS'] = os.environ.get('CPPFLAGS', '') + ' -D_FILE_OFFSET_BITS=32' elif self.config.target_platform == Platform.IOS: self.configure_options = '--with-python=no' elif self.config.target_platform == Platform.LINUX: if self.config.cross_compiling(): self.configure_options = '--with-python=no'