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

WriteMakefile(
    NAME              => 'RTSP::Proxy',
    VERSION_FROM      => 'lib/RTSP/Proxy.pm', # finds $VERSION
    PREREQ_PM         => {
        'RTSP::Client' => '0.03',
        'Net::Server::PreFork' => undef,
        'Moose' => undef,
        'Net::RTP::Packet' => undef,
        'IO::Socket::INET' => undef,
    },
    ($] >= 5.005 ?     ## Add these new keywords supported since 5.005
      (ABSTRACT_FROM  => 'lib/RTSP/Proxy.pm', # retrieve abstract from module
       AUTHOR         => 'Mischa Spiegelmock <revmischa@cpan.org>') : ()),

    META_ADD => { resources => { repository => 'git://github.com/revmischa/rtsp-proxy.git' } },
);