summaryrefslogtreecommitdiff
path: root/Makefile.PL
blob: 7b6643a989d1893d66aa49b3e12937a885738de5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# This -*- perl -*- script makes the Makefile

BEGIN { require 5.004 }

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

WriteMakefile(
  NAME     => 'Date::Parse',
  DISTNAME => 'TimeDate',
  AUTHOR   => 'Graham Barr <gbarr@pobox.com>',
  VERSION_FROM => 'lib/Date/Parse.pm',
  (eval { ExtUtils::MakeMaker->VERSION(6.21) } ? (LICENSE => 'perl') : ()),
  ( eval { ExtUtils::MakeMaker->VERSION(6.46) } ? (
      META_MERGE => {
        resources => {    ##
          repository => 'http://github.com/gbarr/perl-TimeDate',
        },
      }
      )
    : ()
  ),
);