Speed up pure perl base64 encoder/decoder by using join/map instead of while loop. Doc update contributed by Jerrad Pierce Downgrade UTF8 strings before starting to encode.
21 lines
633 B
Makefile
21 lines
633 B
Makefile
# $NetBSD: Makefile,v 1.14 2001/03/21 17:08:54 mjl Exp $
|
|
# FreeBSD Id: Makefile,v 1.3 1997/08/04 22:47:16 ache Exp
|
|
#
|
|
|
|
VERS= 2.12
|
|
DISTNAME= MIME-Base64-${VERS}
|
|
PKGNAME= p5-MIME-Base64-${VERS}
|
|
CATEGORIES= converters perl5
|
|
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=MIME/}
|
|
|
|
MAINTAINER= hubertf@netbsd.org
|
|
HOMEPAGE= http://theory.uwinnipeg.ca/CPAN/data/MIME-Base64/Base64.html
|
|
COMMENT= perl5 module for Base64 and Quoted-Printable encodings
|
|
|
|
USE_PERL5= # defined
|
|
PERL5_PACKLIST= ${PERL5_SITEARCH}/auto/MIME/Base64/.packlist
|
|
|
|
do-configure:
|
|
@cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${PERL5} Makefile.PL
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|