File: Build.PL

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

Module::Build->new(
    module_name     => "Test::Exports",
    license         => "bsd",
    requires        => {
        "Test::Builder"     => 0,
        "B"                 => 0,
        "parent"            => 0,
    },
    build_requires  => {
        "Test::Tester"      => "0.08",
        "Test::More"        => "0.65",
        "Test::Most"        => "0.23",
    },
    meta_merge => {
        resources => {
            repository  => "http://github.com/mauzo/Test-Exports",
            bugtracker  => "https://rt.cpan.org/Public/Dist/Display.html?Name=Test-Exports",
        },
    },
)->create_build_script;