blob: 8ccd8873fb44cd94f010607b2d4a6cbf2e6fb05b (
plain)
1
2
3
4
5
6
7
8
9
10
|
use 5.010000;
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
NAME => 'mro',
VERSION_FROM => 'mro.pm', # finds $VERSION
ABSTRACT_FROM => 'mro.pm', # retrieve abstract from module
MAN3PODS => {},
AUTHOR => 'Brandon L. Black <blblack@gmail.com>');
|