blob: 89f04364ab0f8af14416870a675e4d2012ddc03d (
plain)
1
2
3
4
5
6
7
8
9
|
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
NAME => 'PCP::LogSummary',
AUTHOR => 'Nathan Scott <nathans@debian.org>',
VERSION_FROM => 'LogSummary.pm', # finds $VERSION
ABSTRACT_FROM => 'LogSummary.pm', # retrieve abstract from module
);
|