Alien-V8
view release on metacpan or search on metacpan
123456789101112131415161718192021Build.PL
Changes
inc/Alien/V8/Build.pm
inc/inc_Module-Build/inc/latest.pm
inc/inc_Module-Build/inc/latest/private.pm
inc/inc_Module-Build/Module/Build.pm
inc/inc_Module-Build/Module/Build/Base.pm
inc/inc_Module-Build/Module/Build/Compat.pm
inc/inc_Module-Build/Module/Build/Config.pm
inc/inc_Module-Build/Module/Build/ConfigData.pm
inc/inc_Module-Build/Module/Build/Cookbook.pm
inc/inc_Module-Build/Module/Build/Dumper.pm
inc/inc_Module-Build/Module/Build/ModuleInfo.pm
inc/inc_Module-Build/Module/Build/Notes.pm
inc/inc_Module-Build/Module/Build/Platform/aix.pm
inc/inc_Module-Build/Module/Build/Platform/Amiga.pm
inc/inc_Module-Build/Module/Build/Platform/cygwin.pm
inc/inc_Module-Build/Module/Build/Platform/darwin.pm
inc/inc_Module-Build/Module/Build/Platform/Default.pm
inc/inc_Module-Build/Module/Build/Platform/EBCDIC.pm
inc/inc_Module-Build/Module/Build/Platform/MacOS.pm
inc/inc_Module-Build/Module/Build.pm view on Meta::CPAN
207208209210211212213214215216217218219220221222223224225226This document describes the structure and organization of
C<Module::Build>, and the relevant concepts needed by authors who are
writing F<Build.PL> scripts
for
a distribution or controlling
C<Module::Build> processes programmatically.
=item API Reference (L<Module::Build::API>)
This is a reference to the C<Module::Build> API.
=item Cookbook (L<Module::Build::Cookbook>)
This document demonstrates how to accomplish many common tasks. It
covers general command line usage and authoring of F<Build.PL>
scripts. Includes working examples.
=back
=head1 ACTIONS
inc/inc_Module-Build/Module/Build.pm view on Meta::CPAN
101410151016101710181019102010211022102310241025102610271028102910301031103210331034
perl Makefile.PL PREFIX=/tmp/foo
Because of the very complex nature of the prefixification logic, the
behavior of PREFIX in C<MakeMaker>
has
changed subtly over
time
.
Module::Build's --prefix logic is equivalent to the PREFIX logic found
in C<ExtUtils::MakeMaker> 6.30.
If you
do
not need to retain compatibility
with
C<ExtUtils::MakeMaker> or
are starting a fresh Perl installation we recommend you
use
C<install_base> instead (and C<INSTALL_BASE> in C<ExtUtils::MakeMaker>).
See L<Module::Build::Cookbook/Instaling in the same location as
ExtUtils::MakeMaker>
for
further information.
=back
=head1 MOTIVATIONS
There are several reasons I wanted to start over, and not just fix
what I didn't like about C<MakeMaker>:
inc/inc_Module-Build/Module/Build.pm view on Meta::CPAN
112611271128112911301131113211331134113511361137113811391140114111421143114411451146=head1 COPYRIGHT
Copyright (c) 2001-2006 Ken Williams. All rights reserved.
This library is free software; you can redistribute it and/or
modify it under the same terms as Perl itself.
=head1 SEE ALSO
perl(1), L<Module::Build::Cookbook>, L<Module::Build::Authoring>,
L<Module::Build::API>, L<ExtUtils::MakeMaker>, L<YAML::Tiny>
F<META.yml> Specification:
=cut
inc/inc_Module-Build/Module/Build/Cookbook.pm view on Meta::CPAN
12345678910111213141516171819package
Module::Build::Cookbook;
use
strict;
$VERSION
=
'0.3603'
;
=head1 NAME
Module::Build::Cookbook - Examples of Module::Build Usage
=head1 DESCRIPTION
C<Module::Build> isn't conceptually very complicated, but examples are
always helpful. The following recipes should help developers and/or
installers put together the pieces from the other parts of the
documentation.
=head1 BASIC RECIPES
( run in 0.338 second using v1.01-cache-2.11-cpan-1dc43b0fbd2 )