File: Makefile.PL

package info (click to toggle)
libsub-identify-perl 0.14-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 340 kB
  • sloc: perl: 266; makefile: 3
file content (22 lines) | stat: -rw-r--r-- 600 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
use 5.008;
use ExtUtils::MakeMaker;

WriteMakefile(
    NAME            => "Sub::Identify",
    ABSTRACT        => 'Retrieve names of code references',
    VERSION_FROM    => "lib/Sub/Identify.pm",
    LICENSE         => 'perl',
    PREREQ_PM       => {
        'Test::More'    => 0,
    },
    META_MERGE => {
        'meta-spec' => { version => 2 },
        resources => {
            repository => {
                type => 'git',
                url  => 'https://github.com/rgs/Sub-Identify.git',
                web  => 'https://github.com/rgs/Sub-Identify',
            },
        },
    },
);