File: Makefile.PL

package info (click to toggle)
libbusiness-hours-perl 0.13-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 164 kB
  • sloc: perl: 231; makefile: 2
file content (11 lines) | stat: -rw-r--r-- 455 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
    NAME         => 'Business::Hours',
    VERSION_FROM => 'lib/Business/Hours.pm', # finds $VERSION
    AUTHOR       => 'Jesse Vincent (jesse@cpan.org)',
    PREREQ_PM	 => { Set::IntSpan => '1.12', 'Time::Local' => '0'},
    ABSTRACT     => '',
    (MM->can('signature_target') ? (SIGN => 1) : ()),
);