The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
# vi:set syntax=perl:

use 5.008;
use ExtUtils::MakeMaker;

WriteMakefile(
    'NAME'         => 'CPAN::CachingProxy',
    'VERSION_FROM' => 'CachingProxy.pm',

    'PREREQ_PM'     => { 
        'Cache::File'  => 0,
        'Data::Dumper' => 0,
        LWP            => 0,
        'Digest::SHA1' => 0,
    },

    ($ExtUtils::MakeMaker::VERSION ge '6.48'? 
        (MIN_PERL_VERSION => 5.008,
            META_MERGE => {
                keywords => ['CPAN','cache'],
                resources=> {
                    repository => 'http://github.com/jettero/cpan--cachingproxy/',
                },
            },

        LICENSE	=> 'lgpl2',
    ) : ()),
);