use strict; use warnings; use ExtUtils::MakeMaker; WriteMakefile( NAME => 'Pod-Outline', AUTHOR => 'Andy Lester ', VERSION_FROM => 'Outline.pm', PREREQ_PM => { 'Test::More' => 0, 'Pod::Usage' => 1.12, }, PM => => { 'Outline.pm' => '$(INST_LIBDIR)/Pod/Outline.pm' }, EXE_FILES => [ 'pod-outline' ], dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', }, clean => { FILES => 'Pod-Outline-*' }, );