easyconfigs-it4i/l/libxml2/libxml2-2.9.2-GCC-4.9.2.eb
Lukáš Krupčík 92cb0848fe formatter
2018-10-03 07:48:02 +02:00

32 lines
882 B
Plaintext

easyblock = 'ConfigureMake'
name = 'libxml2'
version = '2.9.2'
homepage = 'http://xmlsoft.org/'
description = """Libxml2 is the XML C parser and
toolchain developed for the Gnome project
(but usable outside of the Gnome platform)."""
toolchain = {'name': 'GCC', 'version': '4.9.2'}
toolchainopts = {'pic': True}
source_urls = [
'http://xmlsoft.org/sources/',
'http://xmlsoft.org/sources/old/'
]
sources = [SOURCELOWER_TAR_GZ]
configopts = 'CC="$CC" CXX="$CXX" --with-pic --without-python --with-zlib=$EBROOTZLIB'
dependencies = [('zlib', '1.2.8')]
sanity_check_paths = {
'files': [
('lib/libxml2.a', 'lib64/libxml2.a'), ('lib/libxml2.%s' %
SHLIB_EXT, 'lib64/libxml2.%s' %
SHLIB_EXT)], 'dirs': [
'bin', 'include/libxml2/libxml'], }
moduleclass = 'lib'