This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Treat nmake the same as dmake (expand 6544e9b1a)
[perl5.git] / cpan / Unicode-Normalize / Makefile.PL
CommitLineData
628bbff0 1require 5.006001;
ac5ea531
JH
2use ExtUtils::MakeMaker;
3
ac5ea531 4WriteMakefile(
02a7bbbc
CBW
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
02a7bbbc
CBW
12 'PREREQ_PM' => {
13 bytes => 0,
14 Carp => 0,
15 constant => 0,
02a7bbbc
CBW
16 Exporter => 0,
17 File::Copy => 0,
18 File::Spec => 0,
19 strict => 0,
20 warnings => 0,
628bbff0 21 },
ac5ea531 22);