7af7cad963
-- HTML::Base is an expansion module for Perl 5 which provides an object-oriented way to build pages of HTML. Its purpose is to create HTML tags at the lowest level of functionality, that is to say, it creates HTML and doesn't do much else. Specifically, it does not provide any CGI-like services (see the CGI modules for that!). Currently, the module supports all of the HTML 2.0 tags, plus some selected tags from HTML 3.0, and some Netscape-isms.
29 lines
705 B
Makefile
29 lines
705 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2000/10/02 05:06:48 brad Exp $
|
|
|
|
DISTNAME= HTML-0.6
|
|
PKGNAME= p5-HTML-Base-0.6
|
|
CATEGORIES= www perl5
|
|
NEED_VERSION= 1.336
|
|
MASTER_SITES= ${MASTER_SITE_PERL_CPAN}
|
|
MASTER_SITE_SUBDIR= HTML
|
|
|
|
MAINTAINER= ports@openbsd.org
|
|
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
WRKDIST= ${WRKDIR}
|
|
|
|
do-build:
|
|
cd ${WRKSRC} && pod2man html_base.pod HTML::Base.3p
|
|
|
|
do-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/libdata/perl5/site_perl/${ARCH}-openbsd/HTML
|
|
${INSTALL_DATA} ${WRKSRC}/HTML/Base.pm \
|
|
${PREFIX}/libdata/perl5/site_perl/${ARCH}-openbsd/HTML
|
|
${INSTALL_MAN} ${WRKSRC}/HTML::Base.3p ${PREFIX}/man/man3
|
|
|
|
.include <bsd.port.mk>
|