# Template file for 'tidy5'
pkgname=tidy5
version=5.8.0
revision=1
build_style=cmake
configure_args="-DTIDY_CONSOLE_SHARED=ON"
cmake_builddir=build/cmake
hostmakedepends="libxslt"
short_desc="Tool to tidy down your HTML/HTML5 code to a clean style"
maintainer="Leah Neukirchen <leah@vuxu.org>"
license="W3C"
homepage="http://www.htacg.org/tidy-html5/"
distfiles="https://github.com/htacg/tidy-html5/archive/${version}.tar.gz"
checksum=59c86d5b2e452f63c5cdb29c866a12a4c55b1741d7025cf2f3ce0cde99b0660e

provides="tidy-${version}_${revision}"
replaces="tidy>0"

pre_configure() {
	# the $(man) target requires tidy5 to run on the host
	ln -s ${cmake_builddir}/tidy
	if [ -n "$CROSS_BUILD" ]; then
		rm -f tidy
		cd ${cmake_builddir}

		env - PATH=/usr/bin cmake -DBUILD_SHARED_LIB:BOOL=FALSE ${wrksrc}
		make ${makejobs} tidy

		cp tidy ${wrksrc}
		cd ${wrksrc}
		rm -rf ${cmake_builddir}
	fi
}

post_install() {
	vlicense README/LICENSE.md LICENSE
	ln -s tidy ${DESTDIR}/usr/bin/tidy5
}

libtidy5_package() {
	short_desc+=" - library files"
	pkg_install() {
		vmove usr/lib/*.so.*
	}
}

libtidy5-devel_package() {
	depends="libtidy5>=${version}_${revision}"
	short_desc+=" - development files"
	pkg_install() {
		vmove usr/include
		vmove usr/lib/*.a
		vmove usr/lib/*.so
		vmove usr/lib/pkgconfig
	}
}
