56 lines
1.3 KiB
Bash
56 lines
1.3 KiB
Bash
# Template file for 'tidy5'
|
|
pkgname=tidy5
|
|
version=5.4.0
|
|
revision=1
|
|
_reponame=tidy-html5
|
|
wrksrc="${_reponame}-${version}"
|
|
build_style=cmake
|
|
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/${_reponame}/"
|
|
distfiles="https://github.com/htacg/${_reponame}/archive/${version}.tar.gz"
|
|
checksum=a2d754b7349982e33f12d798780316c047a3b264240dc6bbd4641542e57a0b7a
|
|
|
|
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
|
|
}
|
|
}
|