This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Convert all Pod::Simple files to Unix line endings.
[perl5.git] / cpan / Unicode-Normalize / Makefile.PL
CommitLineData
628bbff0 1require 5.006001;
ac5ea531
JH
2use ExtUtils::MakeMaker;
3
1efaba7f
JH
4my $clean = {};
5
6if (-f "Normalize.xs") {
7 print STDERR "Making header files for XS...\n";
8
628bbff0
RGS
9 do 'mkheader' or die $@ || "mkheader: $!";
10
1efaba7f 11 $clean = { FILES => 'unfcan.h unfcmb.h unfcmp.h unfcpt.h unfexc.h' };
9fdbfc11
RGS
12}
13
ac5ea531 14WriteMakefile(
628bbff0 15 'INSTALLDIRS' => $] >= 5.007002 ? 'perl' : 'site',
ac5ea531
JH
16 'NAME' => 'Unicode::Normalize',
17 'VERSION_FROM' => 'Normalize.pm', # finds $VERSION
1efaba7f 18 'clean' => $clean,
628bbff0 19 'PREREQ_PM' => {
51683ce6 20 bytes => 0,
628bbff0
RGS
21 Carp => 0,
22 constant => 0,
23 DynaLoader => 0,
24 Exporter => 0,
25 File::Copy => 0,
26 File::Spec => 0,
27 strict => 0,
28 Test => 0,
29 warnings => 0,
30 },
ac5ea531 31);