File: Makefile.PL

package info (click to toggle)
libdatetime-event-recurrence-perl 0.19-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 224 kB
  • sloc: perl: 1,705; makefile: 2
file content (23 lines) | stat: -rw-r--r-- 1,088 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
23
use strict;

use ExtUtils::MakeMaker;

    WriteMakefile( NAME         => 'DateTime::Event::Recurrence',
                   VERSION_FROM => 'lib/DateTime/Event/Recurrence.pm',
                   AUTHOR       => 'Flavio S. Glock <fglock@pucrs.br>',
                   ABSTRACT     => 'DateTime base recurrences',

                   PREREQ_PM    => { 'DateTime' => 0.27,  # local_rd_values
                                     'DateTime::Set' => '0.3600',
                                   },
                   META_MERGE   => { 'meta-spec' => { version => 2 },
                                     resources => {
                                        repository => {
                                            type => 'git',
                                            url => 'https://github.com/fglock/DateTime-Event-Recurrence.git',
                                            web => 'https://github.com/fglock/DateTime-Event-Recurrence',
                                        },
                                     },
                                   },
                 );