/usr/local/CPAN/App-ZofCMS-Plugin-GooglePageRank/Build.PL


use strict;
use warnings;
use Module::Build;

my $builder = Module::Build->new(
    module_name         => 'App::ZofCMS::Plugin::GooglePageRank',
    license             => 'perl',
    dist_author         => q|'Zoffix <'zoffix@cpan.org'>|,
    dist_version_from   => 'lib/App/ZofCMS/Plugin/GooglePageRank.pm',
    build_requires => {
        'Test::More' => 0,
    },
    build_recommends => {
        'App::ZofCMS::Test::Plugin' => '0.0104',
    },
    requires => {
        'App::ZofCMS::Plugin::Base' => 0.0103,
        'WWW::Google::PageRank'     => 0.15,
    },
    add_to_cleanup      => [ 'App-ZofCMS-Plugin-GooglePageRank-*' ],
    create_makefile_pl => 'traditional',
);

$builder->create_build_script();