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

require 5.010;

# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
my $pkg = ExtUtils::Depends->new('Unicode::Casing',
                                 'B::Hooks::OP::Check',
                                 'B::Hooks::OP::PPAddr');
WriteMakefile(
    NAME              => 'Unicode::Casing',
    VERSION_FROM      => 'lib/Unicode/Casing.pm', # finds $VERSION
    PREREQ_PM         => {
                            'B::Hooks::OP::Check'  => 0,
                            'B::Hooks::OP::PPAddr' => 0,
                            'Test::More'           => 0,
                            'XSLoader'             => 0,
						},
    ABSTRACT_FROM     => 'lib/Unicode/Casing.pm', # retrieve abstract from module
    AUTHOR            => 'Karl Williamson <khw@cpan.org>',
    LIBS              => [''], # e.g., '-lm'
    DEFINE            => '', # e.g., '-DHAVE_SOMETHING'
    INC               => '-I.', # e.g., '-I. -I/usr/include/other'
	# Un-comment this if you add C files to link with later:
    # OBJECT            => '$(O_FILES)', # link all the C files too
    $pkg->get_makefile_vars,
    CONFIGURE_REQUIRES => {
                            'ExtUtils::MakeMaker'  => 0,
                            'ExtUtils::Depends'    => 0,

                            # Suggested by Florian Ragwitz to see if this
                            # clears up some load issues on some platforms
                            'B::Hooks::OP::PPAddr' => 0,
                            'B::Hooks::OP::Check'  => 0,
                          },
    clean => {
    	FILES => [ qw(Unicode-*) ],
    	}
);