Herein lies Test-Reporter-1.27.
[test-reporter.git] / Makefile.PL
bloba11e89f8949d79c6717947d0db5d0fbcb760bda8
1 # $Id: Makefile.PL,v 1.12 2003/03/05 05:41:17 afoxson Exp $
2 # $Revision: 1.12 $
4 use ExtUtils::MakeMaker;
6 WriteMakefile(
7         'NAME' => 'Test::Reporter',
8         'PM' => {
9                 'lib/Test/Reporter.pm' =>
10                         '$(INST_LIBDIR)/Reporter.pm',
11                 'lib/Test/Reporter/Mail/Util.pm' =>
12                         '$(INST_LIBDIR)/Reporter/Mail/Util.pm', # Version 1.58 bundled
13                 'lib/Test/Reporter/Date/Format.pm' =>
14                         '$(INST_LIBDIR)/Reporter/Date/Format.pm', # Version 2.22 bundled
15                 'lib/Test/Reporter/Time/Zone.pm' =>
16                         '$(INST_LIBDIR)/Reporter/Time/Zone.pm', # Version 2.22 bundled
17         },
18         'PREREQ_PM' => {
19                 'Net::SMTP' => 0,
20                 'File::Temp' => 0,
21                 'File::Spec' => 0,
22         },
23         'VERSION_FROM' => 'lib/Test/Reporter.pm',
24         'dist' => {
25                 'COMPRESS' => 'gzip --best',
26                 'SUFFIX' => '.gz',
27         },
28         EXE_FILES => ['bin/cpantest'],
29         (   
30                 $] >= 5.005 ?  (   
31                         ABSTRACT_FROM => 'lib/Test/Reporter.pm',
32                         AUTHOR => 'Adam J. Foxson <afoxson@pobox.com>',
33                 ) : ()
34         ),
35         'clean' => {
36                 'FILES' => '*.rpt',
37         },