File: Build.PL

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

die("No support for OS\n")
    if $^O =~ /^mswin/i;


my $builder = Module::Build->new(
    module_name         => 'Test::Command::Simple',
    license             => 'perl',
    dist_author         => q{Darin McBride <dmcbride@cpan.org>},
    dist_version_from   => 'lib/Test/Command/Simple.pm',
    build_requires => {
        'Test::More' => 0,
    },
    add_to_cleanup      => [ 'Test-Command-Simple-*' ],
    create_makefile_pl => 'traditional',
);

$builder->create_build_script();