File: Makefile.PL

package info (click to toggle)
libdate-holidays-de-perl 2.07-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 124 kB
  • sloc: perl: 324; makefile: 2
file content (22 lines) | stat: -rw-r--r-- 884 bytes parent folder | download | duplicates (3)
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;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
    'NAME'		=> 'Date::Holidays::DE',
    'VERSION_FROM'	=> 'DE.pm', # finds $VERSION
    'PREREQ_PM'		=> {Date::Calc => 5.0}, # e.g., Module::Name => 1.1
    ($] >= 5.005 ?    ## Add these new keywords supported since 5.005
      (ABSTRACT   => 'Determine German Holiday dates',
       AUTHOR     => 'Martin Schmitt <mas at scsy dot de>') : ()),
    (eval { ExtUtils::MakeMaker->VERSION(6.46) } ? (META_MERGE => {
        'meta-spec' => { version => 2 },
        resources => {
            repository => {
                type => 'git',
                url  => 'https://github.com/mschmitt/Date-Holidays-DE.git',
                web  => 'https://github.com/mschmitt/Date-Holidays-DE',
            },
        }})
     : ()
    ),
);