77f8276a88
- Use the version tag instead of commit hash when they're the same. - Remove unnneeded variables. - Simplify go- ports when possible. - Various fixes. Sponsored by: Absolight
30 lines
643 B
Makefile
30 lines
643 B
Makefile
# Created by: Thierry Thomas <thierry@pompo.net>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= tidy-html5
|
|
PORTVERSION= 5.2.0
|
|
CATEGORIES= www
|
|
|
|
MAINTAINER= thierry@FreeBSD.org
|
|
COMMENT= Tidy tidies HTML and XML documents
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/README/LICENSE.txt
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= htacg
|
|
|
|
USES= cmake
|
|
USE_GNOME= libxslt
|
|
USE_LDCONFIG= yes
|
|
|
|
CMAKE_ARGS= -DBUILD_SHARED_LIB: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
|
|
|
|
.include <bsd.port.mk>
|