File: Makefile.PL

package info (click to toggle)
libtest-reporter-perl 1.27-3
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 140 kB
  • ctags: 107
  • sloc: perl: 1,295; makefile: 50
file content (38 lines) | stat: -rw-r--r-- 950 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
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# $Id: Makefile.PL,v 1.12 2003/03/05 05:41:17 afoxson Exp $
# $Revision: 1.12 $

use ExtUtils::MakeMaker;

WriteMakefile(
	'NAME' => 'Test::Reporter',
	'PM' => {
		'lib/Test/Reporter.pm' =>
			'$(INST_LIBDIR)/Reporter.pm',
		'lib/Test/Reporter/Mail/Util.pm' =>
			'$(INST_LIBDIR)/Reporter/Mail/Util.pm', # Version 1.58 bundled
		'lib/Test/Reporter/Date/Format.pm' =>
			'$(INST_LIBDIR)/Reporter/Date/Format.pm', # Version 2.22 bundled
		'lib/Test/Reporter/Time/Zone.pm' =>
			'$(INST_LIBDIR)/Reporter/Time/Zone.pm', # Version 2.22 bundled
	},
	'PREREQ_PM' => {
		'Net::SMTP' => 0,
		'File::Temp' => 0,
		'File::Spec' => 0,
	},
	'VERSION_FROM' => 'lib/Test/Reporter.pm',
	'dist' => {
		'COMPRESS' => 'gzip --best',
		'SUFFIX' => '.gz',
	},
	EXE_FILES => ['bin/cpantest'],
	(   
		$] >= 5.005 ?  (   
			ABSTRACT_FROM => 'lib/Test/Reporter.pm',
			AUTHOR => 'Adam J. Foxson <afoxson@pobox.com>',
		) : ()
	),
	'clean' => {
		'FILES' => '*.rpt',
	},
);