Codebase list libtimedate-perl / ba101d61-c2a8-4984-b6b1-01887118f9ae/main Makefile.PL
ba101d61-c2a8-4984-b6b1-01887118f9ae/main

Tree @ba101d61-c2a8-4984-b6b1-01887118f9ae/main (Download .tar.gz)

Makefile.PL @ba101d61-c2a8-4984-b6b1-01887118f9ae/mainraw · history · blame

# 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',
  META_MERGE => {
      resources => {
        bugtracker => 'https://github.com/atoomic/perl-TimeDate/issues',
        repository => 'https://github.com/atoomic/perl-TimeDate',
      }
  },
  (eval { ExtUtils::MakeMaker->VERSION(6.21) } ? (LICENSE => 'perl') : ()),
);