Adding MANIFEST.bak to .gitignore
[test-reporter.git] / Makefile.PL
blob5414ddd1dd8f7a4073e196bfaec9804ce49fd8e9
1 use ExtUtils::MakeMaker;
3 WriteMakefile(
4     (MM->can('signature_target') ? (SIGN => 1) : ()),
5     'NAME' => 'Test::Reporter',
6     'PM' => {
7         'lib/Test/Reporter.pm' => '$(INST_LIBDIR)/Reporter.pm',
8     },
9     'PREREQ_PM' => {
10         'Net::SMTP' => 0,
11         'File::Temp' => 0,
12         'File::Spec' => 0,
13     },
14     'VERSION_FROM' => 'lib/Test/Reporter.pm',
15     'dist' => {
16         'COMPRESS' => 'gzip --best',
17         'SUFFIX' => '.gz',
18     },
19     EXE_FILES => ['bin/cpantest'],
20     (   
21         $] >= 5.005 ?  (   
22             ABSTRACT_FROM => 'lib/Test/Reporter.pm',
23             AUTHOR => 'Adam J. Foxson <afoxson@pobox.com>',
24         ) : ()
25     ),
26     'clean' => {
27         'FILES' => '*.rpt',
28     },
29     LICENSE => 'perl',