mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-05 06:27:37 +00:00
0d07e9dde7
Release notes at <http://binaries.html-tidy.org/release_notes/5.6.0.html>.
33 lines
764 B
Makefile
33 lines
764 B
Makefile
# Created by: Thierry Thomas <thierry@pompo.net>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= tidy-html5
|
|
PORTVERSION= 5.6.0
|
|
CATEGORIES= www
|
|
|
|
MAINTAINER= thierry@FreeBSD.org
|
|
COMMENT= Tidy tidies HTML and XML documents
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/README/LICENSE.md
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= htacg
|
|
|
|
USES= cmake
|
|
USE_GNOME= libxslt
|
|
USE_LDCONFIG= yes
|
|
|
|
CMAKE_ARGS= -DBUILD_SHARED_LIB:BOOL=ON \
|
|
-DTIDY_CONSOLE_SHARED:BOOL=ON
|
|
|
|
PLIST_SUB= VER=${PORTVERSION}
|
|
|
|
post-install:
|
|
# To avoid conflict ATM - to be removed later
|
|
${MV} ${STAGEDIR}${PREFIX}/bin/tidy ${STAGEDIR}${PREFIX}/bin/tidy5
|
|
${MV} ${STAGEDIR}${PREFIX}/lib/libtidy.so ${STAGEDIR}${PREFIX}/lib/libtidy5.so
|
|
${MV} ${STAGEDIR}${MANPREFIX}/man/man1/tidy.1 ${STAGEDIR}${MANPREFIX}/man/man1/tidy5.1
|
|
|
|
.include <bsd.port.mk>
|