File: Makefile.PL

package info (click to toggle)
libscalar-type-perl 1.0.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 180 kB
  • sloc: perl: 210; makefile: 3
file content (24 lines) | stat: -rw-r--r-- 682 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
23
24
use 5.008;
use ExtUtils::MakeMaker;

WriteMakefile(
    NAME => 'Scalar::Type',
    META_MERGE => {
        license => 'open_source',
        resources => {
            repository => 'https://github.com/DrHyde/perl-modules-Scalar-Type',
            bugtracker => 'https://github.com/DrHyde/perl-modules-Scalar-Type/issues'
        },
    },
    VERSION_FROM => 'lib/Scalar/Type.pm',
    OBJECT => 'Type$(OBJ_EXT)',
    PREREQ_PM => {
        'Scalar::Util'    => 0,
        'Devel::Peek'     => 0,
        'Capture::Tiny'   => 0,
        'Carp'            => 0,
        'if'              => 0,
        'Test2::API'      => 1.302198,
        'Test2::V0'       => 0.000159,
    },
);