File: Build.PL

package info (click to toggle)
libmodule-starter-pbp-perl 0.0.3-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 100 kB
  • sloc: perl: 286; makefile: 2
file content (18 lines) | stat: -rw-r--r-- 498 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use strict;
use warnings;
use Module::Build;

my $builder = Module::Build->new(
    module_name         => 'Module::Starter::PBP',
    license             => 'perl',
    dist_author         => 'Damian Conway <DCONWAY@cpan.org>',
    dist_version_from   => 'lib/Module/Starter/PBP.pm',
    requires => {
        'Test::More'      => 0,
        'Module::Starter' => 0,
        'version'         => 0,
    },
    add_to_cleanup      => [ 'Module-Starter-PBP-*' ],
);

$builder->create_build_script();