File: Makefile.PL

package info (click to toggle)
libhtml-calendarmonthsimple-perl 1.27-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 156 kB
  • sloc: perl: 673; makefile: 2
file content (27 lines) | stat: -rw-r--r-- 899 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
27
use ExtUtils::MakeMaker;
WriteMakefile(
    NAME          => 'HTML::CalendarMonthSimple',
    ABSTRACT_FROM => 'lib/HTML/CalendarMonthSimple.pm',
    VERSION_FROM  => 'lib/HTML/CalendarMonthSimple.pm',
    AUTHOR        => 'Michael R. Davis - MRDVT',
    PREREQ_PM     => {
                      'Test::Simple' => 0.44,
                      'Date::Calc'   => 0,
                     },
'META_MERGE' => {
    'meta-spec' => {
      'version' => 2
    },
    'resources' => {
      'repository' => {
        'url' => 'git@github.com:mrdvt92/perl-HTML-CalendarMonthSimple.git',
        'web' => 'https://github.com/mrdvt92/perl-HTML-CalendarMonthSimple.git',
        'type' => 'git'
      },
      'homepage' => 'https://github.com/mrdvt92/perl-HTML-CalendarMonthSimple',
      'bugtracker' => {
        'web' => 'https://github.com/mrdvt92/perl-HTML-CalendarMonthSimple/issues'
      }
    }
  },
);