File: Build.PL

package info (click to toggle)
libpoe-component-pubsub-perl 0.05-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 88 kB
  • sloc: perl: 363; makefile: 2
file content (19 lines) | stat: -r--r--r-- 525 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
use strict;
use warnings;
use Module::Build;

my $builder = Module::Build->new(
    module_name         => 'POE::Component::PubSub',
    license             => 'gpl',
    dist_author         => 'Nicholas R. Perez <nperez@cpan.org>',
    dist_version_from   => 'lib/POE/Component/PubSub.pm',
    create_readme       => 1,
    build_requires => {
        'perl'  => '5.10.0',
        'Test::More' => 0,
        'POE' => 1.003
    },
    add_to_cleanup      => [ 'POE-Component-PubSub-*' ],
);

$builder->create_build_script();