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

WriteMakefile(
    NAME          => 'WWW::OReillyMedia::Store',
    AUTHOR        => q{Mohammad S Anwar <mohammad.anwar@yahoo.com>},
    VERSION_FROM  => 'lib/WWW/OReillyMedia/Store.pm',
    ABSTRACT_FROM => 'lib/WWW/OReillyMedia/Store.pm',
    dist          => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
    clean         => { FILES => 'WWW-OReillyMedia-Store-*' },
    PREREQ_PM     => {
        'Test::More'     => 0,
        'Readonly'       => '1.03',
        'HTTP::Request'  => '1.40',
        'LWP::UserAgent' => '2.33',
    },
    ($ExtUtils::MakeMaker::VERSION >= 6.3002
      ? ('LICENSE'=> 'perl')
      : ()),
);