File: Makefile.PL

package info (click to toggle)
libdatetime-format-duration-perl 1.03a-1.3
  • links: PTS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 300 kB
  • sloc: perl: 486; makefile: 2
file content (18 lines) | stat: -rwxr-xr-x 430 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use 5.00005;
use ExtUtils::MakeMaker;

#print "PLEASE NOTE:";


WriteMakefile(
    'NAME'		=> 'DateTime::Format::Duration',
    'VERSION_FROM'	=> 'lib/DateTime/Format/Duration.pm',
    'PREREQ_PM'		=> {
		'Test::More'  =>  0,
		'DateTime'	  =>  0.30,
		'DateTime::Duration' => 0,
	}, 
    ($] >= 5.005 ?  
      (ABSTRACT_FROM => 'lib/DateTime/Format/Duration.pm', 
       AUTHOR     => 'Rick Measham <rickm@cpan.org>') : ()),
);