File: Makefile.PL

package info (click to toggle)
libdata-report-perl 1.001-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 220 kB
  • sloc: perl: 1,972; makefile: 2
file content (50 lines) | stat: -rw-r--r-- 1,163 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#! perl

use strict;
use warnings;
use ExtUtils::MakeMaker;

my $master = 'lib/Data/Report.pm';
my $version = MM->parse_version($master);

WriteMakefile(
 NAME                => 'Data::Report',
 AUTHOR              => 'Johan Vromans <jv@cpan.org>',
 VERSION             => $version,
 ABSTRACT_FROM       => $master,
 LICENSE             => 'perl_5',
 PL_FILES            => {},
 DIR		     => [],
 MIN_PERL_VERSION    => '5.010001',
 PREREQ_PM => {
     'ExtUtils::MakeMaker' => 6.46, # for META_MERGE, LICENSE
     'Test::More' => 0,
     'Text::CSV'  => 1.00,
 },
 TEST_REQUIRES  => {
        'Text::CSV'  => 1.00,
 },
 META_MERGE => {
   resources    => {
     repository => {
       type => 'git',
       web  => 'https://github.com/sciurius/perl-Data-Report',
       url  => 'https://github.com/sciurius/perl-Data-Report.git',
     },
     bugtracker => {
       web => "https://github.com/sciurius/perl-Data-Report/issues",
     },
   },
   'meta-spec' => {
     version => '2',
     url     => 'https://metacpan.org/pod/CPAN::Meta::Spec',
   },
   recommends => {
		  'HTML::Entities' => 0,
   },

   no_index => {
       package => [ qw(DB) ],
   },
 }
);