r7843@merlin: jquelin | 2007-11-26 12:44:39 +0100
[time-fuzzy.git] / Makefile.PL
blob5d6ee3f0261f93d8aec55a575577cb4b0a3ccf29
1 #!perl
3 # This file is part of Time::Fuzzy.
4 # Copyright (c) 2007 Jerome Quelin, all rights reserved.
6 # This program is free software; you can redistribute it and/or modify
7 # it under the same terms as Perl itself.
11 use strict;
12 use warnings;
13 use ExtUtils::MakeMaker;
15 WriteMakefile(
16     NAME                => 'Time::Fuzzy',
17     AUTHOR              => 'Jerome Quelin <jquelin@cpan.org>',
18     VERSION_FROM        => 'lib/Time/Fuzzy.pm',
19     ABSTRACT_FROM       => 'lib/Time/Fuzzy.pm',
20     PL_FILES            => {},
21     PREREQ_PM => {
22         'Class::Accessor' => 0,
23         'DateTime'        => 0,
24         'Test::More'      => 0,
25     },
26     dist  => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
27     clean => { FILES => [
28                 'Time-Fuzzy-*', 'MANIFEST.bak',
29                 map { ( '*/' x $_ ) . '*~' } 0..4
30         ] },