NAME

ExtUtils::MY_Metafile - META.yml customize with ExtUtil::MakeMaker

VERSION

Version 0.03

SYNOPSIS

# in your Makefile.PL
use ExtUtils::MakeMaker;
use inc::ExtUtils::MY_Metafile;

my_metafile {
  no_index => {
    directory => [ qw(inc example t), ],
  },
  license  => 'perl',
};

WriteMakefile(
  DISTNAME => 'Your::Module',
  ...
);

EXPORT

This module exports one function.

FUNCTIONS

my_metafile \%meta_param;

Takes one or two arguments. First one is package name to be generated, and you can omit this argument. Second is hashref which contains META.yml contents.

my_metafile {
  no_index => {
    directory => [ qw(inc example t), ],
  },
  license  => 'perl',
};

AUTHOR

YAMASHINA Hio, <hio at cpan.org>

BUGS

Please report any bugs or feature requests to bug-extutils-my_metafile at rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=ExtUtils-MY_Metafile. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

SUPPORT

You can find documentation for this module with the perldoc command.

perldoc ExtUtils::MY_Metafile

You can also look for information at:

ACKNOWLEDGEMENTS

COPYRIGHT & LICENSE

Copyright 2006 YAMASHINA Hio, all rights reserved.

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.