/usr/local/CPAN/POE-Component-Archive-Any/Build.PL


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

my $builder = Module::Build->new(
    module_name         => 'POE::Component::Archive::Any',
    license             => 'perl',
    dist_author         => 'Zoffix Znet <zoffix@cpan.org>',
    dist_version_from   => 'lib/POE/Component/Archive/Any.pm',
    build_requires => {
        'Test::More' => 0,
    },
    requires => {
        'Carp'                   => 1.04,
        'POE'                    => 0.9999,
        'POE::Wheel::Run'        => 1.2179,
        'POE::Filter::Reference' => 1.2187,
        'POE::Filter::Line'      => 1.1920,
        'Archive::Any'           => 0.093,
    },
    add_to_cleanup      => [ 'POE-Component-Archive-Any-*' ],
    create_makefile_pl => 'traditional',
);

$builder->create_build_script();