use strict; use warnings; use ExtUtils::MakeMaker; use 5.8.0; WriteMakefile( NAME => 'Acme::Anything', AUTHOR => 'Josh ben Jore ', VERSION_FROM => 'lib/Acme/Anything.pm', ABSTRACT_FROM => 'lib/Acme/Anything.pm', PL_FILES => {}, PREREQ_PM => { 'Test::More' => 0, }, dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', }, clean => { FILES => 'Acme-Anything-*' }, );