summaryrefslogtreecommitdiff
path: root/cpan/dist/Time-modules/Makefile.PL
blob: d4537f2e7f0c6aff32d37d696b9d0d4e284b752c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
use ExtUtils::MakeMaker;

WriteMakefile( 
	VERSION_FROM =>	'lib/Time/ParseDate.pm',
	NAME =>		'Time-modules',
	($] >= 5.005 
		?	
			(
				ABSTRACT	=> 'Parse and format time values',
				AUTHOR		=> 'David Muir Sharnoff <cpan@dave.sharnoff.org>',
				META_MERGE     => {
					resources  => {
						repository => 'http://github.com/muir/Time-modules',
					},
				},
			) 
		: ()
	),
	dist => { 	COMPRESS=>"gzip", SUFFIX=>"gz" },
);