CPANPLUS-Dist-Build
view release on metacpan or search on metacpan
NAME
CPANPLUS::Dist::Build - CPANPLUS plugin to install packages that use
Build.PL
VERSION
version 0.90
SYNOPSIS
my $build = CPANPLUS::Dist->new(
format => 'CPANPLUS::Dist::Build',
module => $modobj,
);
$build->prepare; # runs Build.PL
$build->create; # runs build && build test
$build->install; # runs build install
DESCRIPTION
CPANPLUS::Dist::Build is a distribution class for Module::Build related
modules. Using this package, you can create, install and uninstall perl
modules. It inherits from CPANPLUS::Dist.
Normal users won't have to worry about the interface to this module, as
it functions transparently as a plug-in to CPANPLUS and will just Do
The Right Thing when it's loaded.
ACCESSORS
parent()
Returns the CPANPLUS::Module object that parented this object.
status()
Returns the Object::Accessor object that keeps the status for this
module.
STATUS ACCESSORS
All accessors can be accessed as follows: $build->status->ACCESSOR
build_pl ()
Location of the Build file. Set to 0 explicitly if something went
wrong.
build ()
BOOL indicating if the Build command was successful.
test ()
BOOL indicating if the Build test command was successful.
prepared ()
BOOL indicating if the prepare call exited successfully This gets set
after perl Build.PL
distdir ()
Full path to the directory in which the prepare call took place, set
after a call to prepare.
created ()
BOOL indicating if the create call exited successfully. This gets set
after Build and Build test.
installed ()
BOOL indicating if the module was installed. This gets set after
Build install exits successfully.
uninstalled ()
BOOL indicating if the module was uninstalled properly.
_create_args ()
Storage of the arguments passed to create for this object. Used for
recursive calls when satisfying prerequisites.
_install_args ()
( run in 0.883 second using v1.01-cache-2.11-cpan-39bf76dae61 )