vp-build/srcpkgs/tidy5/template

58 lines
1.3 KiB
Bash

# Template file for 'tidy5'
pkgname=tidy5
version=5.8.0
revision=1
wrksrc="tidy-html5-${version}"
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=2fc78c4369cde9a80f4ae3961880bd003ac31e8b160f6b9422645bab3be5a6cf
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
}
}