7725a868f3
tidyp is a program that can validate your HTML, as well as modify it to be more clean and standard. tidyp does not validate HTML 5. libtidyp is the library on which the program is based. It can be used by any other program that can interface to it. ok sthen@
31 lines
629 B
Makefile
31 lines
629 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2011/03/10 19:34:01 jasper Exp $
|
|
|
|
COMMENT= validate, correct and pretty-print HTML
|
|
|
|
V= 1.04
|
|
DISTNAME= tidyp-$V
|
|
SHARED_LIBS += tidyp-$V 0.0 # 0.0
|
|
SHARED_LIBS += tidyp 0.0 # 0.0
|
|
CATEGORIES= www
|
|
|
|
HOMEPAGE= http://www.tidyp.com/
|
|
|
|
# BSD-like, badly worded
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
WANTLIB= c
|
|
|
|
MASTER_SITES= http://github.com/downloads/petdance/tidyp/
|
|
|
|
CONFIGURE_STYLE=gnu
|
|
|
|
USE_LIBTOOL= Yes
|
|
|
|
# Upstream references a non-existing test script...
|
|
NO_REGRESS= Yes
|
|
|
|
.include <bsd.port.mk>
|