File: Build.PL

package info (click to toggle)
libsuper-perl 1.20190531-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 152 kB
  • sloc: perl: 460; makefile: 2
file content (26 lines) | stat: -rw-r--r-- 461 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
#! perl

BEGIN { require 5.006002 }

use Module::Build;

my $build = Module::Build->new(
    module_name => 'SUPER',
    license     => 'perl',
    requires    =>
    {
        'perl'          => '5.6.2',
        'Scalar::Util'  => '1.20',
        'Sub::Identify' => '0.03',
    },
    build_requires =>
    {
        'Test::Simple' => '0.61',
    },
    no_index     =>
    {
        package => [ qw( UNIVERSAL DB ) ]
    },
);

$build->create_build_script();