diff options
Diffstat (limited to 'ext/mro/Makefile.PL')
-rw-r--r-- | ext/mro/Makefile.PL | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/ext/mro/Makefile.PL b/ext/mro/Makefile.PL new file mode 100644 index 0000000000..8ccd8873fb --- /dev/null +++ b/ext/mro/Makefile.PL @@ -0,0 +1,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>'); |