5980b09dd5
Text::Unaccent is a module that remove accents from a string. unac_string converts the input string from the specified charset to UTF-16 and call unac_string_utf16 to return the unaccented equivalent. The conversion from and to UTF-16 is done with iconv(1).
18 lines
530 B
Makefile
18 lines
530 B
Makefile
# $NetBSD: Makefile,v 1.1.1.1 2005/10/04 18:51:27 wiz Exp $
|
|
#
|
|
|
|
DISTNAME= Text-Unaccent-1.08
|
|
PKGNAME= p5-${DISTNAME}
|
|
CATEGORIES= textproc perl5
|
|
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Text/}
|
|
|
|
MAINTAINER= tech-pkg@NetBSD.org
|
|
HOMEPAGE= http://search.cpan.org/dist/Text-Unaccent/
|
|
COMMENT= Perl5 module that removes accents from a string
|
|
|
|
PERL5_PACKLIST= auto/Text/Unaccent/.packlist
|
|
|
|
# needs iconv(1)
|
|
.include "../../converters/libiconv/buildlink3.mk"
|
|
.include "../../lang/perl5/module.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|