File: Build.PL

package info (click to toggle)
libtest-mock-cmd-perl 0.7-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 176 kB
  • sloc: perl: 166; makefile: 2
file content (18 lines) | stat: -rw-r--r-- 576 bytes parent folder | download
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       => 'Test::Mock::Cmd',
    license           => 'perl',
    dist_author       => 'Daniel Muey <http://drmuey.com/cpan_contact.pl>',
    dist_version_from => 'lib/Test/Mock/Cmd.pm',
    requires          => {
        'Test::More' => 0,    # for testing, I know I know: Test::XT
        'Test::Carp' => 0,    # for testing
                              # 'Test::Output' => 0, # for testing
    },
    add_to_cleanup => ['Test-Mock-Cmd-*'],
);

$builder->create_build_script();