The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

ExtUtils::MakeMaker::Extensions - Helper for multiple ExtUtils::MakeMaker extensions

SYNOPSIS

For Makefile.PL authors:

    package MY;
    
    use ExtUtils::MakeMaker::Extensions ':MY';
    
    with 'File::ConfigDir::Install', '...'

For ExtUtils::MakeMaker::Extensions authors:

    package My::EUMM::Extension;
    
    use Role::Tiny;
    use Class::Method::Modifiers;

    around postamble => sub {
        my $next           = shift;
        my $self           = shift;
        my $postamble_code = $self->$next(@_);

        $postamble_code .= "${own_additions}";

        return $postamble_code;
    };

DESCRIPTION

This is a namespace reservation with kind of concept behind ...

AUTHOR

Jens Rehsack, <rehsack at cpan.org>

BUGS

Please report any bugs or feature requests to bug-extutils-makemaker-extensions at rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=ExtUtils-MakeMaker-Extensions. 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::MakeMaker::Extensions

You can also look for information at:

ACKNOWLEDGEMENTS

LICENSE AND COPYRIGHT

Copyright 2014 Jens Rehsack.

This program is free software; you can redistribute it and/or modify it under the terms of either: the GNU General Public License as published by the Free Software Foundation; or the Artistic License.

See http://dev.perl.org/licenses/ for more information.