File: Makefile.PL

package info (click to toggle)
libdevel-caller-perl 2.07-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 92 kB
  • sloc: perl: 344; makefile: 3
file content (26 lines) | stat: -rw-r--r-- 766 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
25
26
#!perl
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
    NAME          => 'Devel::Caller',
    AUTHOR        => 'Richard Clamp <richardc@unixbeard.net>',
    LICENSE       => 'perl',
    VERSION_FROM  => 'lib/Devel/Caller.pm',
    ABSTRACT_FROM => 'lib/Devel/Caller.pm',
    PREREQ_PM     => {
        'Test::More' => 0,
        'PadWalker'  => '0.08'
    },
    META_MERGE => {
        'meta-spec' => { version => 2 },
        resources => {
            repository  => {
                type => 'git',
                url => 'https://github.com/richardc/perl-devel-caller.git',
                web => 'https://github.com/richardc/perl-devel-caller',
            },
            license     => 'http://dev.perl.org/licenses/',
        },
   },
);