This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
[Patch @14129] fixes Unicode::Normalize
[perl5.git] / ext / Unicode / Normalize / Makefile.PL
CommitLineData
ac5ea531
JH
1use ExtUtils::MakeMaker;
2
3# This is not the CPAN Unicode::Normalize makefile
4# that can handle XS-NOXS installing. We do just XS.
5
6do "mkheader";
7
8WriteMakefile(
9 'NAME' => 'Unicode::Normalize',
10 'VERSION_FROM' => 'Normalize.pm', # finds $VERSION
11 ($] >= 5.005 ? ## Add these new keywords supported since 5.005
d85850a7 12 (ABSTRACT_FROM => 'Normalize.pm', # retrieve abstract from module
ac5ea531
JH
13 AUTHOR => 'SADAHIRO Tomoyuki <SADAHIRO@cpan.org>') : ()),
14 clean => {FILES=> 'unfcan.h unfcmb.h unfcmp.h unfcpt.h unfexc.h'},
15);