File: Makefile.PL

package info (click to toggle)
liblogfile-rotate-perl 1.04-3
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 128 kB
  • ctags: 22
  • sloc: perl: 163; makefile: 37
file content (14 lines) | stat: -rw-r--r-- 559 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
    'NAME'	       => 'Logfile::Rotate',
    'VERSION_FROM' => 'Rotate.pm', # finds $VERSION
    'PREREQ_PM'    => { 'File::Copy'  => 2.02 }, # requires
    'dist'         => {
		PREOP      => '/opt/perl5/bin/pod2text Rotate.pm > README;\
                       /opt/perl5/bin/pod2html --noindex \
                       Rotate.pm > Logfile-Rotate.man.html',
		COMPRESS=> 'gzip -9f', SUFFIX=>'gz',
    },
);