Sync with Unicode::Normalize 0.25
[p5sagit/p5-mst-13.2.git] / ext / Unicode / Normalize / Makefile.PL
1 use ExtUtils::MakeMaker;
2
3 my $clean = {};
4
5 if (-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' };
10 }
11
12 WriteMakefile(
13     'INSTALLDIRS'       => $] >= 5.007 ? 'perl' : 'site',
14     'NAME'              => 'Unicode::Normalize',
15     'VERSION_FROM'      => 'Normalize.pm', # finds $VERSION
16     'clean'             => $clean,
17 );