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

my $MM_VERSION = $ExtUtils::MakeMaker::VERSION;

WriteMakefile(
    NAME              => 'Test::ExtDirect',
    VERSION_FROM      => 'lib/Test/ExtDirect.pm',

    PREREQ_PM         => {
        'Clone'                  => 0,
        'Test::More'             => 0,
        'RPC::ExtDirect::Server' => 0,
        'RPC::ExtDirect::Client' => '0.22',
    },

    ABSTRACT => 'An easy and convenient way to test Ext.Direct classes',
    AUTHOR   => 'Alex Tokarev <tokarev@cpan.org>',
    LICENSE  => 'perl',

    ($MM_VERSION >= 6.46
        ? ( META_MERGE => {
                resources => {
                    bugtracker => 'http://github.com/nohuhu/Test-ExtDirect/issues',
                    repository => 'http://github.com/nohuhu/Test-ExtDirect',
                },
            },
        )
        : ()
    ),
);