Alien-V8

 view release on metacpan or  search on metacpan

MANIFEST  view on Meta::CPAN

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Build.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

207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
This 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

1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
    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

1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
=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

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
use strict;
use vars qw($VERSION);
$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 )