The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
require 5.006001;
use ExtUtils::MakeMaker;

WriteMakefile(
    'AUTHOR'            => 'SADAHIRO Tomoyuki <SADAHIRO@cpan.org>',
    'ABSTRACT'          => 'Unicode Normalization Forms',
    'INSTALLDIRS'       => ($] >= 5.007002 && $] < 5.011) ? 'perl' : 'site',
                            # see perl5110delta, @INC reorganization
    'LICENSE'           => 'perl',
    'NAME'              => 'Unicode::Normalize',
    'VERSION_FROM'      => 'Normalize.pm', # finds $VERSION
    'PREREQ_PM'         => {
        Carp            => 0,
        constant        => 0,
        Exporter        => 0,
        File::Spec      => 0,
        strict          => 0,
        warnings        => 0,
    },
);