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

BEGIN { require 5.004 }

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

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