File: Build.PL

package info (click to toggle)
libtest-fork-perl 0.02-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 84 kB
  • sloc: perl: 135; makefile: 2
file content (34 lines) | stat: -rw-r--r-- 898 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
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#!/usr/bin/perl -w

BEGIN { require 5.006001 }

use Module::Build;

my $build = Module::Build->new(
    module_name     => 'Test::Fork',
    license         => 'perl',
    dist_author     => 'Michael G Schwern <schwern@pobox.com>',

    build_requires  => {
        'Test::More'                => '0.62',
        'Test::Builder::Tester'     => '1.02',
    },

    requires        => {
        'Test::Builder::Module'     => '0.02',
        perl                        => '5.6.1',
    },

    meta_merge => {
        configure_requires => {
            'Module::Build'     => '0.2808'
        },
        resources => {
            license     =>      'http://dev.perl.org/licenses/',
            bugtracker  =>      'http://rt.cpan.org/NoAuth/Bugs.html?Dist=Test-Fork',
            repository  =>      'http://svn.schwern.org/repos/CPAN/Test-Fork',
        }
    },
);

$build->create_build_script;