1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Module::Starter::Plugin::DirStore',
ABSTRACT => 'template storage methods for Module::Starter',
DISTNAME => 'Module-Starter-Plugin-SimpleStore',
AUTHOR => 'Ricardo SIGNES <rjbs@cpan.org>',
LICENSE => 'perl',
VERSION_FROM => 'lib/Module/Starter/Plugin/DirStore.pm',
PL_FILES => {},
PREREQ_PM => {
'Test::More' => 0,
'Module::Starter' => 1.32
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'Module-Starter-Plugin-SimpleStore-*' },
);
|