File: Makefile.PL

package info (click to toggle)
libtime-format-perl 1.11-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, wheezy
  • size: 248 kB
  • ctags: 34
  • sloc: perl: 522; makefile: 4
file content (17 lines) | stat: -rw-r--r-- 563 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use ExtUtils::MakeMaker;

WriteMakefile (
    NAME                => 'Time::Format',
    VERSION_FROM        => 'lib/Time/Format.pm', # finds $VERSION
    PREREQ_PM =>
    {
     'Test::Simple'     => '0.40',
     'Time::Local'      => '1.07',
    },
    PL_FILES            => {},

    ($] >= 5.005 ?    ## Add these new keywords supported since 5.005
      (ABSTRACT_FROM => 'lib/Time/Format.pm', # retrieve abstract from module
       AUTHOR     => 'Eric Roode <roode@cpan.org>') : ()),
    (MM->can('signature_target')? (SIGN => 1) : ()),
);