#!perl use warnings; use strict; use ExtUtils::MakeMaker; WriteMakefile( NAME => 'Acme::Phlegethoth', AUTHOR => 'Rocco Caputo ', VERSION_FROM => 'lib/Acme/Phlegethoth.pm', LICENSE => 'perl', ABSTRACT => "Improve your code's readability, if you're an Ancient One", META_ADD => { resources => { license => 'http://dev.perl.org/licenses/', repository => 'http://thirdlobe.com/svn/acme-phlegethoth/trunk' }, }, dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', PREOP => ( 'svn-log.perl | tee ./$(DISTNAME)-$(VERSION)/CHANGES > ./CHANGES ; ' . 'LANG=C perldoc lib/Acme/Phlegethoth.pm | ' . 'tee ./$(DISTNAME)-$(VERSION)/README > README' ), }, );