File: Makefile.PL

package info (click to toggle)
liblog-dispatch-filerotate-perl 1.19-1.4
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 152 kB
  • sloc: perl: 948; makefile: 2
file content (18 lines) | stat: -rw-r--r-- 655 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
    'NAME'		=> 'Log::Dispatch::FileRotate',
    'VERSION_FROM'	=> 'FileRotate.pm', # finds $VERSION
    'PREREQ_PM'		=> {}, # e.g., Module::Name => 1.1
	'ABSTRACT_FROM' => 'FileRotate.pm',
	'AUTHOR'        => '"Mark Pfeiffer" <markpf@mlp-consulting.com.au>',
	'clean'         => {FILES => "*.log*"},
	 PREREQ_PM   => {
			'Log::Log4perl'	=> '1.0', # or a minimum workable version
			'Log::Dispatch::Output' => 0,
			'Date::Manip'      => 0,
			'Params::Validate' => 0,
			'Fcntl'         => 0,
    }
);