File: Makefile.PL

package info (click to toggle)
libtest-longstring-perl 0.17-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 132 kB
  • sloc: perl: 502; makefile: 2
file content (22 lines) | stat: -rw-r--r-- 617 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
use ExtUtils::MakeMaker;

WriteMakefile(
    AUTHOR	    => 'Rafael Garcia-Suarez <rgs@consttype.org>',
    NAME	    => "Test::LongString",
    VERSION_FROM    => "lib/Test/LongString.pm",
    PREREQ_PM	    => {
	'Test::Builder'		=> 0.12,
	'Test::Builder::Tester'	=> 1.04,
    },
    LICENSE	    => 'perl',
    META_MERGE => {
    'meta-spec' => { version => 2 },
        resources => {
            repository => {
                type => 'git',
                url  => 'https://github.com/rgs/Test-LongString.git',
                web  => 'https://github.com/rgs/Test-LongString',
            },
        },
    },
);