Re: Clock skew failures in Memoize test suite
[p5sagit/p5-mst-13.2.git] / ext / Unicode / Normalize / Makefile.PL
1 use ExtUtils::MakeMaker;
2
3 # This is not the CPAN Unicode::Normalize makefile
4 # that can handle XS-NOXS installing.  We do just XS.
5
6 do "mkheader";
7
8 WriteMakefile(
9     'NAME'              => 'Unicode::Normalize',
10     'VERSION_FROM'      => 'Normalize.pm', # finds $VERSION
11     ($] >= 5.005 ?    ## Add these new keywords supported since 5.005
12       (ABSTRACT_FROM => 'Normalize.pm', # retrieve abstract from module
13        AUTHOR     => 'SADAHIRO Tomoyuki <SADAHIRO@cpan.org>') : ()),
14     clean => {FILES=> 'unfcan.h unfcmb.h unfcmp.h unfcpt.h unfexc.h'},
15 );