File: Makefile.PL

package info (click to toggle)
libdatetime-event-ical-perl 0.13-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 220 kB
  • sloc: perl: 1,767; makefile: 2
file content (23 lines) | stat: -rw-r--r-- 1,056 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::ICal',
                   VERSION_FROM => 'lib/DateTime/Event/ICal.pm',
                   AUTHOR       => 'Flavio S. Glock <fglock@gmail.com>',
                   ABSTRACT     => 'DateTime rfc2445 recurrences',

                   PREREQ_PM    => { 'DateTime' => 0,
                                     'DateTime::Event::Recurrence' => 0.11,
                                   },
                   META_MERGE   => { 'meta-spec' => { version => 2 },
                                     resources => {
                                        repository => {
                                            type => 'git',
                                            url => 'https://github.com/fglock/DateTime-Event-ICal.git',
                                            web => 'https://github.com/fglock/DateTime-Event-ICal',
                                        },
                                     },
                                   },
                 );