f41f35079b
HTML::Lint is a Perl class similar to HTML::Parser, because it inherits from it. You can use HTML::Lint to validate HTML code in strings or files. The package also comes with a command line tool for validating. from grunk@
28 lines
609 B
Makefile
28 lines
609 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2005/12/20 22:06:00 sturm Exp $
|
|
# Original from: Andy Lester <andy@petdance.com>
|
|
|
|
COMMENT= "check for HTML errors in a string or file"
|
|
|
|
DISTNAME= HTML-Lint-2.02
|
|
PKGNAME= p5-${DISTNAME}
|
|
CATEGORIES= www perl5
|
|
|
|
MAINTAINER= Alexander von Gernler <grunk@pestilenz.org>
|
|
|
|
# Artistic
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=HTML/}
|
|
|
|
RUN_DEPENDS= :p5-HTML-Parser-*:www/p5-HTML-Parser
|
|
REGRESS_DEPENDS= ${RUN_DEPENDS}
|
|
|
|
CONFIGURE_STYLE= perl
|
|
|
|
PKG_ARCH= *
|
|
|
|
.include <bsd.port.mk>
|