use
strict;
use
warnings;
use
ExtUtils::MakeMaker;
WriteMakefile(
NAME
=>
'Text::Todo::Simple'
,
AUTHOR
=>
q{Alessandro Ghedini <alexbio@cpan.org>}
,
VERSION_FROM
=>
'lib/Text/Todo/Simple.pm'
,
ABSTRACT_FROM
=>
'lib/Text/Todo/Simple.pm'
,
(
$ExtUtils::MakeMaker::VERSION
>= 6.3002
? (
'LICENSE'
=>
'perl'
)
: ()),
EXE_FILES
=> [
'script/t.pl'
],
PREREQ_PM
=> {
'Carp'
=> 0,
'Test::More'
=> 0,
},
dist
=> {
COMPRESS
=>
'gzip -9f'
,
SUFFIX
=>
'gz'
, },
clean
=> {
FILES
=>
'Text-Todo-Simple-*'
},
);