GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
Module::Build::Pluggable::Base(3) User Contributed Perl Documentation Module::Build::Pluggable::Base(3)

Module::Build::Pluggable::Base - Base object for plugins

    package My::Module::Build::Plugin;
    use parent qw/Module::Build::Pluggable::Base/;

This is a abstract base class for Module::Build::Pluggable.

$self->builder_class() : Str
Get a class name for Module::Build's subclass.

You cannot call this method in "HOOK_prepare" and HOOK_configure phase.

$self->add_before_action_modifier($action_name: Str, $callback: Code)
    $self->add_before_action_modifier('build' => \&code);
    

Add a 'before' action method modifier.

You need to call this method in "HOOK_build" phase.

$self->add_around_action_modifier($action_name: Str, $callback: Code)
    $self->add_around_action_modifier('build' => \&code);
    

Add a 'around' action method modifier.

You need to call this method in "HOOK_build" phase.

$self->add_action($action_name: Str, $callback: Code)
Add a new action for Module::Build.

You need to call this method in "HOOK_build" phase.

$self->build_requires($module_name:Str[, $version:Str])
Add a build dependencies.

You need to call this method in "HOOK_configure" phase.

$self->configure_requires($module_name:Str[, $version:Str])
Add a configure dependencies.

You need to call this method in "HOOK_configure" phase.

"$self->log_info($msg: Str)"
Output log in INFO level.
"$self->log_warn($msg: Str)"
Output log in WARN level.
2022-04-07 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.