# Template file for 'libxml2'
pkgname=libxml2
version=2.12.6
revision=2
build_style=gnu-configure
configure_args="--with-threads --with-history --with-icu
 --with-legacy --with-ftp --with-xptr-locs --enable-static"
hostmakedepends="gettext pkg-config python3"
makedepends="zlib-devel ncurses-devel readline-devel liblzma-devel icu-devel
 python3-devel"
short_desc="Library providing XML and HTML support"
maintainer="Enno Boland <gottox@voidlinux.org>"
license="MIT"
homepage="https://gitlab.gnome.org/GNOME/libxml2"
changelog="https://gitlab.gnome.org/GNOME/libxml2/-/raw/master/NEWS"
distfiles="${GNOME_SITE}/libxml2/${version%.*}/libxml2-${version}.tar.xz"
checksum=889c593a881a3db5fdd96cc9318c87df34eb648edfc458272ad46fd607353fbb
python_version=3
CFLAGS="-I$XBPS_CROSS_BASE/usr/include/python$py3_ver"

post_extract() {
	if [ "$XBPS_TARGET_LIBC" = "musl" ]; then
		# Disable broken encoding conversion tests on musl
		rm -f test/ebcdic_566012.xml
		rm -f test/icu_parse_test.xml
	fi
}

post_install() {
	vlicense Copyright
}

libxml2-devel_package() {
	depends="zlib-devel liblzma-devel icu-devel
	 libxml2>=${version}_${revision} libxml2<${version}_9999"
	short_desc+=" - development files"
	pkg_install() {
		vmove usr/include
		vmove usr/bin/xml2-config
		vmove usr/lib/pkgconfig
		vmove usr/lib/cmake
		vmove usr/share/aclocal
		vmove usr/share/gtk-doc
		vmove usr/share/doc
		vmove "usr/share/man/man1/xml2-config*"
		vmove "usr/lib/*.a"
		vmove "usr/lib/*.la"
		vmove "usr/lib/*.so"
	}
}

libxml2-python3_package() {
	depends="python3 ${sourcepkg}>=${version}"
	short_desc+=" - Python bindings"
	pkg_install() {
		vmove "${py3_lib}"
	}
}
