#!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://github.com/rcaputo/acme-phlegethoth', }, }, dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', PREOP => ( 'git-log.pl | tee ./$(DISTNAME)-$(VERSION)/CHANGES > ./CHANGES ; ' . 'LANG=C perldoc lib/Acme/Phlegethoth.pm | ' . 'tee ./$(DISTNAME)-$(VERSION)/README > README' ), }, );