File: Makefile.PL

package info (click to toggle)
libtest-mocktime-perl 0.17-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 96 kB
  • sloc: perl: 239; makefile: 2
file content (20 lines) | stat: -rw-r--r-- 457 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!perl

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

WriteMakefile(
		'NAME'          => 'Test::MockTime',
		'AUTHOR'        => q{David Dick <ddick@cpan.org>},
		'VERSION_FROM'  => 'lib/Test/MockTime.pm',
		'ABSTRACT_FROM' => 'lib/Test/MockTime.pm',
	    ($ExtUtils::MakeMaker::VERSION >= 6.3002
	      ? ('LICENSE'=> 'perl')
	      : ()),
		'PREREQ_PM'     => {
				'Test::More' => 0,
				'Time::Local' => 0,
				'Time::Piece' => '1.08',
					},
);