This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Update Unicode-Collate to CPAN version 1.09
[perl5.git] / cpan / Unicode-Normalize / Makefile.PL
1 require 5.006001;
2 use ExtUtils::MakeMaker;
3
4 WriteMakefile(
5     'AUTHOR'            => 'SADAHIRO Tomoyuki <SADAHIRO@cpan.org>',
6     'ABSTRACT'          => 'Unicode Normalization Forms',
7     'INSTALLDIRS'       => ($] >= 5.007002 && $] < 5.011) ? 'perl' : 'site',
8                             # see perl5110delta, @INC reorganization
9     'LICENSE'           => 'perl',
10     'NAME'              => 'Unicode::Normalize',
11     'VERSION_FROM'      => 'Normalize.pm', # finds $VERSION
12     'PREREQ_PM'         => {
13         bytes           => 0,
14         Carp            => 0,
15         constant        => 0,
16         Exporter        => 0,
17         File::Copy      => 0,
18         File::Spec      => 0,
19         strict          => 0,
20         warnings        => 0,
21     },
22 );