Update Unicode::Normalize to 0.28
[p5sagit/p5-mst-13.2.git] / ext / Unicode / Normalize / Makefile.PL
CommitLineData
ac5ea531 1use ExtUtils::MakeMaker;
2
1efaba7f 3my $clean = {};
4
5if (-f "Normalize.xs") {
6 print STDERR "Making header files for XS...\n";
7
8 do "mkheader";
9 $clean = { FILES => 'unfcan.h unfcmb.h unfcmp.h unfcpt.h unfexc.h' };
9fdbfc11 10}
11
ac5ea531 12WriteMakefile(
82e740b6 13 'INSTALLDIRS' => $] >= 5.007 ? 'perl' : 'site',
ac5ea531 14 'NAME' => 'Unicode::Normalize',
15 'VERSION_FROM' => 'Normalize.pm', # finds $VERSION
1efaba7f 16 'clean' => $clean,
ac5ea531 17);