File: Makefile.PL

package info (click to toggle)
libmodule-cpants-analyse-perl 1.02-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 312 kB
  • sloc: perl: 2,192; makefile: 2
file content (28 lines) | stat: -rw-r--r-- 714 bytes parent folder | download | duplicates (2)
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
27
28
use 5.008001;
use strict;
use warnings;
use ExtUtils::MakeMaker::CPANfile;

WriteMakefile(
  NAME => 'Module::CPANTS::Analyse',
  AUTHOR => [
    'Thomas Klausner <domm@cpan.org>',
    'Kenichi Ishigaki <ishigaki@cpan.org>',
  ],
  ABSTRACT_FROM => 'lib/Module/CPANTS/Analyse.pm',
  VERSION_FROM => 'lib/Module/CPANTS/Analyse.pm',
  LICENSE => 'perl',

  META_MERGE => {
    resources => {
      homepage => 'https://cpants.cpanauthors.org',
      repository => 'https://github.com/cpants/Module-CPANTS-Analyse',
      bugtracker => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Module-CPANTS-Analyse',
    },
    keywords => [
      'CPANTS','kwalitee',
    ],
  },

  test => {TESTS => 't/*.t t/*/*.t'},
);