Skip to content

Commit

Permalink
edit Makefile.PL. edit PREREQ_PM mostly
Browse files Browse the repository at this point in the history
  • Loading branch information
shelling committed Aug 19, 2009
1 parent 6e978a2 commit c10171e
Showing 1 changed file with 12 additions and 5 deletions.
17 changes: 12 additions & 5 deletions Makefile.PL
Expand Up @@ -4,9 +4,16 @@ use ExtUtils::MakeMaker;
# the contents of the Makefile that is written.
WriteMakefile(
NAME => 'Posterous',
VERSION_FROM => 'lib/Posterous.pm', # finds $VERSION
PREREQ_PM => {}, # e.g., Module::Name => 1.1
($] >= 5.005 ? ## Add these new keywords supported since 5.005
(ABSTRACT_FROM => 'lib/Posterous.pm', # retrieve abstract from module
AUTHOR => '許 家瑋 <shelling@apple.com>') : ()),
VERSION_FROM => 'lib/Posterous.pm',
ABSTRACT_FROM => 'lib/Posterous.pm',
PREREQ_PM => {
'LWP::UserAgent' => 0,
'HTTP::Request' => 0,
'Rubyish::Attribute' => 0,
'MIME::Base64' => 0,
'Attribute::Protected' => 0,
'XML::Simple' => 0,
},
AUTHOR => 'shelling <shelling@cpan.org>',
clean => { FILES => "Posterous-*" },
);

0 comments on commit c10171e

Please sign in to comment.