Silence ill-behaved or failing Module::Build tests on VMS.
[p5sagit/p5-mst-13.2.git] / lib / Module / Build / API.pod
CommitLineData
dc8021d3 1=head1 NAME
2
3Module::Build::API - API Reference for Module Authors
4
5
6=head1 DESCRIPTION
7
8I list here some of the most important methods in C<Module::Build>.
9Normally you won't need to deal with these methods unless you want to
10subclass C<Module::Build>. But since one of the reasons I created
11this module in the first place was so that subclassing is possible
12(and easy), I will certainly write more docs as the interface
13stabilizes.
14
15
16=head2 CONSTRUCTORS
17
18=over 4
19
20=item current()
21
22[version 0.20]
23
24This method returns a reasonable facsimile of the currently-executing
25C<Module::Build> object representing the current build. You can use
7a827510 26this object to query its L</notes()> method, inquire about installed
dc8021d3 27modules, and so on. This is a great way to share information between
28different parts of your build process. For instance, you can ask
29the user a question during C<perl Build.PL>, then use their answer
30during a regression test:
31
32 # In Build.PL:
33 my $color = $build->prompt("What is your favorite color?");
34 $build->notes(color => $color);
35
36 # In t/colortest.t:
37 use Module::Build;
38 my $build = Module::Build->current;
39 my $color = $build->notes('color');
40 ...
41
42The way the C<current()> method is currently implemented, there may be
43slight differences between the C<$build> object in Build.PL and the
44one in C<t/colortest.t>. It is our goal to minimize these differences
45in future releases of Module::Build, so please report any anomalies
46you find.
47
48One important caveat: in its current implementation, C<current()> will
49B<NOT> work correctly if you have changed out of the directory that
50C<Module::Build> was invoked from.
51
52=item new()
53
54[version 0.03]
55
56Creates a new Module::Build object. Arguments to the new() method are
57listed below. Most arguments are optional, but you must provide
7a827510 58either the L</module_name> argument, or L</dist_name> and one of
59L</dist_version> or L</dist_version_from>. In other words, you must
dc8021d3 60provide enough information to determine both a distribution name and
61version.
62
63
64=over 4
65
66=item add_to_cleanup
67
68[version 0.19]
69
70An array reference of files to be cleaned up when the C<clean> action
7a827510 71is performed. See also the L<add_to_cleanup()|/"add_to_cleanup(@files)">
72method.
dc8021d3 73
74=item auto_features
75
76[version 0.26]
77
78This parameter supports the setting of features (see
7a827510 79L</feature($name)>) automatically based on a set of prerequisites. For
dc8021d3 80instance, for a module that could optionally use either MySQL or
81PostgreSQL databases, you might use C<auto_features> like this:
82
83 my $build = Module::Build->new
84 (
85 ...other stuff here...
86 auto_features => {
87 pg_support => {
88 description => "Interface with Postgres databases",
89 requires => { 'DBD::Pg' => 23.3,
90 'DateTime::Format::Pg' => 0 },
91 },
92 mysql_support => {
93 description => "Interface with MySQL databases",
94 requires => { 'DBD::mysql' => 17.9,
95 'DateTime::Format::MySQL' => 0 },
96 },
97 }
98 );
99
100For each feature named, the required prerequisites will be checked, and
101if there are no failures, the feature will be enabled (set to C<1>).
102Otherwise the failures will be displayed to the user and the feature
103will be disabled (set to C<0>).
104
7a827510 105See the documentation for L</requires> for the details of how
dc8021d3 106requirements can be specified.
107
108=item autosplit
109
110[version 0.04]
111
112An optional C<autosplit> argument specifies a file which should be run
7a827510 113through the L<AutoSplit::autosplit()|AutoSplit/autosplit> function.
114If multiple files should be split, the argument may be given as an
115array of the files to split.
dc8021d3 116
117In general I don't consider autosplitting a great idea, because it's
118not always clear that autosplitting achieves its intended performance
119benefits. It may even harm performance in environments like mod_perl,
120where as much as possible of a module's code should be loaded during
121startup.
122
123=item build_class
124
125[version 0.28]
126
7a827510 127The Module::Build class or subclass to use in the build script.
128Defaults to "Module::Build" or the class name passed to or created by
129a call to L</subclass()>. This property is useful if you're
dc8021d3 130writing a custom Module::Build subclass and have a bootstrapping
131problem--that is, your subclass requires modules that may not be
132installed when C<perl Build.PL> is executed, but you've listed in
7a827510 133L</build_requires> so that they should be available when C<./Build> is
dc8021d3 134executed.
135
136=item build_requires
137
138[version 0.07]
139
140Modules listed in this section are necessary to build and install the
141given module, but are not necessary for regular usage of it. This is
142actually an important distinction - it allows for tighter control over
143the body of installed modules, and facilitates correct dependency
144checking on binary/packaged distributions of the module.
145
146See the documentation for L<Module::Build::Authoring/"PREREQUISITES">
147for the details of how requirements can be specified.
148
149=item create_packlist
150
151[version 0.28]
152
153If true, this parameter tells Module::Build to create a F<.packlist>
154file during the C<install> action, just like ExtUtils::MakeMaker does.
155The file is created in a subdirectory of the C<arch> installation
156location. It is used by some other tools (CPAN, CPANPLUS, etc.) for
157determining what files are part of an install.
158
159The default value is true. This parameter was introduced in
160Module::Build version 0.2609; previously no packlists were ever
161created by Module::Build.
162
163=item c_source
164
165[version 0.04]
166
167An optional C<c_source> argument specifies a directory which contains
168C source files that the rest of the build may depend on. Any C<.c>
169files in the directory will be compiled to object files. The
170directory will be added to the search path during the compilation and
171linking phases of any C or XS files.
172
173=item conflicts
174
175[version 0.07]
176
177Modules listed in this section conflict in some serious way with the
178given module. C<Module::Build> (or some higher-level tool) will
179refuse to install the given module if the given module/version is also
180installed.
181
182See the documentation for L<Module::Build::Authoring/"PREREQUISITES">
183for the details of how requirements can be specified.
184
185=item create_makefile_pl
186
187[version 0.19]
188
189This parameter lets you use Module::Build::Compat during the
190C<distdir> (or C<dist>) action to automatically create a Makefile.PL
191for compatibility with ExtUtils::MakeMaker. The parameter's value
7a827510 192should be one of the styles named in the L<Module::Build::Compat>
dc8021d3 193documentation.
194
195=item create_readme
196
197[version 0.22]
198
199This parameter tells Module::Build to automatically create a F<README>
200file at the top level of your distribution. Currently it will simply
201use C<Pod::Text> (or C<Pod::Readme> if it's installed) on the file
202indicated by C<dist_version_from> and put the result in the F<README>
203file. This is by no means the only recommended style for writing a
204README, but it seems to be one common one used on the CPAN.
205
206If you generate a F<README> in this way, it's probably a good idea to
207create a separate F<INSTALL> file if that information isn't in the
208generated F<README>.
209
210=item dist_abstract
211
212[version 0.20]
213
214This should be a short description of the distribution. This is used
215when generating metadata for F<META.yml> and PPD files. If it is not
216given then C<Module::Build> looks in the POD of the module from which
217it gets the distribution's version. It looks for the first line
218matching C<$package\s-\s(.+)>, and uses the captured text as the
219abstract.
220
221=item dist_author
222
223[version 0.20]
224
225This should be something like "John Doe <jdoe@example.com>", or if
226there are multiple authors, an anonymous array of strings may be
227specified. This is used when generating metadata for F<META.yml> and
228PPD files. If this is not specified, then C<Module::Build> looks at
229the module from which it gets the distribution's version. If it finds
230a POD section marked "=head1 AUTHOR", then it uses the contents of
231this section.
232
233=item dist_name
234
235[version 0.11]
236
237Specifies the name for this distribution. Most authors won't need to
238set this directly, they can use C<module_name> to set C<dist_name> to
239a reasonable default. However, some agglomerative distributions like
240C<libwww-perl> or C<bioperl> have names that don't correspond directly
241to a module name, so C<dist_name> can be set independently.
242
243=item dist_version
244
245[version 0.11]
246
7a827510 247Specifies a version number for the distribution. See L</module_name>
248or L</dist_version_from> for ways to have this set automatically from a
dc8021d3 249C<$VERSION> variable in a module. One way or another, a version
250number needs to be set.
251
252=item dist_version_from
253
254[version 0.11]
255
256Specifies a file to look for the distribution version in. Most
7a827510 257authors won't need to set this directly, they can use L</module_name>
dc8021d3 258to set it to a reasonable default.
259
260The version is extracted from the specified file according to the same
7a827510 261rules as L<ExtUtils::MakeMaker> and C<CPAN.pm>. It involves finding
dc8021d3 262the first line that matches the regular expression
263
264 /([\$*])(([\w\:\']*)\bVERSION)\b.*\=/
265
266eval()-ing that line, then checking the value of the C<$VERSION>
267variable. Quite ugly, really, but all the modules on CPAN depend on
268this process, so there's no real opportunity to change to something
269better.
270
271=item dynamic_config
272
273[version 0.07]
274
275A boolean flag indicating whether the F<Build.PL> file must be
276executed, or whether this module can be built, tested and installed
277solely from consulting its metadata file. The main reason to set this
278to a true value is that your module performs some dynamic
279configuration as part of its build/install process. If the flag is
280omitted, the F<META.yml> spec says that installation tools should
281treat it as 1 (true), because this is a safer way to behave.
282
283Currently C<Module::Build> doesn't actually do anything with this flag
7a827510 284- it's up to higher-level tools like C<CPAN.pm> to do something useful
285with it. It can potentially bring lots of security, packaging, and
286convenience improvements.
dc8021d3 287
288=item extra_compiler_flags
289
290=item extra_linker_flags
291
292[version 0.19]
293
294These parameters can contain array references (or strings, in which
295case they will be split into arrays) to pass through to the compiler
296and linker phases when compiling/linking C code. For example, to tell
297the compiler that your code is C++, you might do:
298
299 my $build = Module::Build->new
300 (
301 module_name => 'Foo::Bar',
302 extra_compiler_flags => ['-x', 'c++'],
303 );
304
305To link your XS code against glib you might write something like:
306
307 my $build = Module::Build->new
308 (
309 module_name => 'Foo::Bar',
310 dynamic_config => 1,
311 extra_compiler_flags => scalar `glib-config --cflags`,
312 extra_linker_flags => scalar `glib-config --libs`,
313 );
314
315=item get_options
316
317[version 0.26]
318
319You can pass arbitrary command line options to F<Build.PL> or
320F<Build>, and they will be stored in the Module::Build object and can
7a827510 321be accessed via the L</args()> method. However, sometimes you want
dc8021d3 322more flexibility out of your argument processing than this allows. In
323such cases, use the C<get_options> parameter to pass in a hash
324reference of argument specifications, and the list of arguments to
325F<Build.PL> or F<Build> will be processed according to those
326specifications before they're passed on to C<Module::Build>'s own
327argument processing.
328
329The supported option specification hash keys are:
330
331
332=over 4
333
334=item type
335
336The type of option. The types are those supported by Getopt::Long; consult
337its documentation for a complete list. Typical types are C<=s> for strings,
338C<+> for additive options, and C<!> for negatable options. If the
339type is not specified, it will be considered a boolean, i.e. no
340argument is taken and a value of 1 will be assigned when the option is
341encountered.
342
343=item store
344
345A reference to a scalar in which to store the value passed to the option.
346If not specified, the value will be stored under the option name in the
347hash returned by the C<args()> method.
348
349=item default
350
351A default value for the option. If no default value is specified and no option
352is passed, then the option key will not exist in the hash returned by
353C<args()>.
354
355=back
356
357
358You can combine references to your own variables or subroutines with
359unreferenced specifications, for which the result will also be stored in the
360hash returned by C<args()>. For example:
361
362 my $loud = 0;
363 my $build = Module::Build->new
364 (
365 module_name => 'Foo::Bar',
366 get_options => {
367 loud => { store => \$loud },
368 dbd => { type => '=s' },
369 quantity => { type => '+' },
370 }
371 );
372
373 print STDERR "HEY, ARE YOU LISTENING??\n" if $loud;
374 print "We'll use the ", $build->args('dbd'), " DBI driver\n";
375 print "Are you sure you want that many?\n"
376 if $build->args('quantity') > 2;
377
378The arguments for such a specification can be called like so:
379
380 perl Build.PL --loud --dbd=DBD::pg --quantity --quantity --quantity
381
382B<WARNING:> Any option specifications that conflict with Module::Build's own
383options (defined by its properties) will throw an exception.
384
385Consult the Getopt::Long documentation for details on its usage.
386
387=item include_dirs
388
389[version 0.24]
390
391Specifies any additional directories in which to search for C header
392files. May be given as a string indicating a single directory, or as
393a list reference indicating multiple directories.
394
395=item install_path
396
397[version 0.19]
398
399You can set paths for individual installable elements by using the
400C<install_path> parameter:
401
402 my $build = Module::Build->new
403 (
404 ...other stuff here...
405 install_path => {
406 lib => '/foo/lib',
407 arch => '/foo/lib/arch',
408 }
409 );
410
411=item installdirs
412
413[version 0.19]
414
415Determines where files are installed within the normal perl hierarchy
416as determined by F<Config.pm>. Valid values are: C<core>, C<site>,
417C<vendor>. The default is C<site>. See
418L<Module::Build/"INSTALL PATHS">
419
420=item license
421
422[version 0.07]
423
424Specifies the licensing terms of your distribution. Valid options include:
425
426
427=over 4
428
429=item apache
430
431The distribution is licensed under the Apache Software License
7a827510 432(L<http://opensource.org/licenses/apachepl.php>).
dc8021d3 433
434=item artistic
435
436The distribution is licensed under the Artistic License, as specified
7a827510 437by the F<Artistic> file in the standard Perl distribution.
438
439=item artistic_2
440
441The distribution is licensed under the Artistic 2.0 License
442(L<http://opensource.org/licenses/artistic-license-2.0.php>.)
dc8021d3 443
444=item bsd
445
446The distribution is licensed under the BSD License
7a827510 447(L<http://www.opensource.org/licenses/bsd-license.php>).
dc8021d3 448
449=item gpl
450
7a827510 451The distribution is licensed under the terms of the GNU General
452Public License (L<http://www.opensource.org/licenses/gpl-license.php>).
dc8021d3 453
454=item lgpl
455
7a827510 456The distribution is licensed under the terms of the GNU Lesser
dc8021d3 457General Public License
7a827510 458(L<http://www.opensource.org/licenses/lgpl-license.php>).
dc8021d3 459
460=item mit
461
462The distribution is licensed under the MIT License
7a827510 463(L<http://opensource.org/licenses/mit-license.php>).
dc8021d3 464
465=item mozilla
466
467The distribution is licensed under the Mozilla Public
7a827510 468License. (L<http://opensource.org/licenses/mozilla1.0.php> or
469L<http://opensource.org/licenses/mozilla1.1.php>)
dc8021d3 470
471=item open_source
472
473The distribution is licensed under some other Open Source
474Initiative-approved license listed at
7a827510 475L<http://www.opensource.org/licenses/>.
dc8021d3 476
477=item perl
478
479The distribution may be copied and redistributed under the same terms
7a827510 480as Perl itself (this is by far the most common licensing option for
dc8021d3 481modules on CPAN). This is a dual license, in which the user may
482choose between either the GPL or the Artistic license.
483
484=item restrictive
485
486The distribution may not be redistributed without special permission
487from the author and/or copyright holder.
488
489=item unrestricted
490
491The distribution is licensed under a license that is B<not> approved
492by www.opensource.org but that allows distribution without
493restrictions.
494
495=back
496
497
498Note that you must still include the terms of your license in your
499documentation - this field only lets automated tools figure out your
500licensing restrictions. Humans still need something to read. If you
501choose to provide this field, you should make sure that you keep it in
502sync with your written documentation if you ever change your licensing
503terms.
504
505It is a fatal error to use a license other than the ones mentioned
506above. This is not because I wish to impose licensing terms on you -
507please let me know if you would like another license option to be
508added to the list. You may also use a license type of C<unknown> if
509you don't wish to specify your terms (but this is usually not a good
510idea for you to do!).
511
512I just started out with a small set of licenses to keep things simple,
513figuring I'd let people with actual working knowledge in this area
514tell me what to do. So if that's you, drop me a line.
515
516=item meta_add
517
518[version 0.28]
519
520A hash of key/value pairs that should be added to the F<META.yml> file
521during the C<distmeta> action. Any existing entries with the same
522names will be overridden.
523
7a827510 524See the L</"MODULE METADATA"> section for details.
525
dc8021d3 526=item meta_merge
527
528[version 0.28]
529
530A hash of key/value pairs that should be merged into the F<META.yml>
531file during the C<distmeta> action. Any existing entries with the
532same names will be overridden.
533
534The only difference between C<meta_add> and C<meta_merge> is their
535behavior on hash-valued and array-valued entries: C<meta_add> will
536completely blow away the existing hash or array value, but
537C<meta_merge> will merge the supplied data into the existing hash or
538array value.
539
7a827510 540See the L</"MODULE METADATA"> section for details.
541
dc8021d3 542=item module_name
543
544[version 0.03]
545
546The C<module_name> is a shortcut for setting default values of
547C<dist_name> and C<dist_version_from>, reflecting the fact that the
548majority of CPAN distributions are centered around one "main" module.
549For instance, if you set C<module_name> to C<Foo::Bar>, then
550C<dist_name> will default to C<Foo-Bar> and C<dist_version_from> will
551default to C<lib/Foo/Bar.pm>. C<dist_version_from> will in turn be
552used to set C<dist_version>.
553
554Setting C<module_name> won't override a C<dist_*> parameter you
555specify explicitly.
556
557=item PL_files
558
559[version 0.06]
560
561An optional parameter specifying a set of C<.PL> files in your
562distribution. These will be run as Perl scripts prior to processing
563the rest of the files in your distribution. They are usually used as
564templates for creating other files dynamically, so that a file like
565C<lib/Foo/Bar.pm.PL> might create the file C<lib/Foo/Bar.pm>.
566
567The files are specified with the C<.PL> files as hash keys, and the
568file(s) they generate as hash values, like so:
569
570 my $build = Module::Build->new
571 (
572 module_name => 'Foo::Bar',
573 ...
574 PL_files => { 'lib/Foo/Bar.pm.PL' => 'lib/Foo/Bar.pm' },
575 );
576
577Note that the path specifications are I<always> given in Unix-like
578format, not in the style of the local system.
579
580If your C<.PL> scripts don't create any files, or if they create files
581with unexpected names, or even if they create multiple files, you can
582indicate that so that Module::Build can properly handle these created
583files:
584
585 PL_files => {
586 'lib/Foo/Bar.pm.PL' => 'lib/Foo/Bar.pm',
587 'lib/something.PL' => ['/lib/something', '/lib/else'],
588 'lib/funny.PL' => [],
589 }
590
591=item pm_files
592
593[version 0.19]
594
595An optional parameter specifying the set of C<.pm> files in this
596distribution, specified as a hash reference whose keys are the files'
597locations in the distributions, and whose values are their logical
598locations based on their package name, i.e. where they would be found
599in a "normal" Module::Build-style distribution. This parameter is
600mainly intended to support alternative layouts of files.
601
602For instance, if you have an old-style MakeMaker distribution for a
603module called C<Foo::Bar> and a F<Bar.pm> file at the top level of the
604distribution, you could specify your layout in your C<Build.PL> like
605this:
606
607 my $build = Module::Build->new
608 (
609 module_name => 'Foo::Bar',
610 ...
611 pm_files => { 'Bar.pm' => 'lib/Foo/Bar.pm' },
612 );
613
614Note that the values should include C<lib/>, because this is where
615they would be found in a "normal" Module::Build-style distribution.
616
617Note also that the path specifications are I<always> given in
618Unix-like format, not in the style of the local system.
619
620=item pod_files
621
622[version 0.19]
623
624Just like C<pm_files>, but used for specifying the set of C<.pod>
625files in your distribution.
626
627=item recommends
628
629[version 0.08]
630
7a827510 631This is just like the L</requires> argument, except that modules listed
dc8021d3 632in this section aren't essential, just a good idea. We'll just print
633a friendly warning if one of these modules aren't found, but we'll
634continue running.
635
636If a module is recommended but not required, all tests should still
637pass if the module isn't installed. This may mean that some tests
638may be skipped if recommended dependencies aren't present.
639
640Automated tools like CPAN.pm should inform the user when recommended
641modules aren't installed, and it should offer to install them if it
642wants to be helpful.
643
644See the documentation for L<Module::Build::Authoring/"PREREQUISITES">
645for the details of how requirements can be specified.
646
647=item recursive_test_files
648
649[version 0.28]
650
651Normally, C<Module::Build> does not search subdirectories when looking
652for tests to run. When this options is set it will search recursively
653in all subdirectories of the standard 't' test directory.
654
655=item requires
656
657[version 0.07]
658
659An optional C<requires> argument specifies any module prerequisites
660that the current module depends on.
661
662One note: currently C<Module::Build> doesn't actually I<require> the
663user to have dependencies installed, it just strongly urges. In the
7a827510 664future we may require it. There's also a L</recommends> section for
dc8021d3 665things that aren't absolutely required.
666
667Automated tools like CPAN.pm should refuse to install a module if one
668of its dependencies isn't satisfied, unless a "force" command is given
669by the user. If the tools are helpful, they should also offer to
670install the dependencies.
671
672A synonym for C<requires> is C<prereq>, to help succour people
673transitioning from C<ExtUtils::MakeMaker>. The C<requires> term is
674preferred, but the C<prereq> term will remain valid in future
675distributions.
676
677See the documentation for L<Module::Build::Authoring/"PREREQUISITES">
678for the details of how requirements can be specified.
679
680=item script_files
681
682[version 0.18]
683
684An optional parameter specifying a set of files that should be
7a827510 685installed as executable Perl scripts when the module is installed.
dc8021d3 686May be given as an array reference of the files, or as a hash
687reference whose keys are the files (and whose values will currently be
688ignored).
689
690The default is to install no script files - in other words, there is
691no default location where Module::Build will look for script files to
692install.
693
694For backward compatibility, you may use the parameter C<scripts>
695instead of C<script_files>. Please consider this usage deprecated,
696though it will continue to exist for several version releases.
697
698=item sign
699
700[version 0.16]
701
7a827510 702If a true value is specified for this parameter, L<Module::Signature>
dc8021d3 703will be used (via the 'distsign' action) to create a SIGNATURE file
704for your distribution during the 'distdir' action, and to add the
705SIGNATURE file to the MANIFEST (therefore, don't add it yourself).
706
707The default value is false. In the future, the default may change to
708true if you have C<Module::Signature> installed on your system.
709
710=item test_files
711
712[version 0.23]
713
714An optional parameter specifying a set of files that should be used as
715C<Test::Harness>-style regression tests to be run during the C<test>
716action. May be given as an array reference of the files, or as a hash
717reference whose keys are the files (and whose values will currently be
718ignored). If the argument is given as a single string (not in an
719array reference), that string will be treated as a C<glob()> pattern
720specifying the files to use.
721
722The default is to look for a F<test.pl> script in the top-level
723directory of the distribution, and any files matching the glob pattern
724C<*.t> in the F<t/> subdirectory. If the C<recursive_test_files>
725property is true, then the C<t/> directory will be scanned recursively
726for C<*.t> files.
727
77e96e88 728
dc8021d3 729=item xs_files
730
731[version 0.19]
732
733Just like C<pm_files>, but used for specifying the set of C<.xs>
734files in your distribution.
735
736=back
737
738
739=item new_from_context(%args)
740
741[version 0.28]
742
743When called from a directory containing a F<Build.PL> script and a
744F<META.yml> file (in other words, the base directory of a
745distribution), this method will run the F<Build.PL> and return the
746resulting C<Module::Build> object to the caller. Any key-value
747arguments given to C<new_from_context()> are essentially like
748command line arguments given to the F<Build.PL> script, so for example
749you could pass C<< verbose => 1 >> to this method to turn on
750verbosity.
751
752=item resume()
753
754[version 0.03]
755
756You'll probably never call this method directly, it's only called from
757the auto-generated C<Build> script. The C<new()> method is only
758called once, when the user runs C<perl Build.PL>. Thereafter, when
759the user runs C<Build test> or another action, the C<Module::Build>
760object is created using the C<resume()> method to re-instantiate with
761the settings given earlier to C<new()>.
762
763=item subclass()
764
765[version 0.06]
766
767This creates a new C<Module::Build> subclass on the fly, as described
768in the L<Module::Build::Authoring/"SUBCLASSING"> section. The caller
769must provide either a C<class> or C<code> parameter, or both. The
770C<class> parameter indicates the name to use for the new subclass, and
771defaults to C<MyModuleBuilder>. The C<code> parameter specifies Perl
772code to use as the body of the subclass.
773
774=back
775
776
777=head2 METHODS
778
779=over 4
780
781=item add_build_element($type)
782
783[version 0.26]
784
785Adds a new type of entry to the build process. Accepts a single
786string specifying its type-name. There must also be a method defined
787to process things of that type, e.g. if you add a build element called
788C<'foo'>, then you must also define a method called
789C<process_foo_files()>.
790
791See also
792L<Module::Build::Cookbook/"Adding new file types to the build process">.
793
794=item add_to_cleanup(@files)
795
796[version 0.03]
797
798You may call C<< $self->add_to_cleanup(@patterns) >> to tell
799C<Module::Build> that certain files should be removed when the user
800performs the C<Build clean> action. The arguments to the method are
801patterns suitable for passing to Perl's C<glob()> function, specified
802in either Unix format or the current machine's native format. It's
803usually convenient to use Unix format when you hard-code the filenames
804(e.g. in F<Build.PL>) and the native format when the names are
805programmatically generated (e.g. in a testing script).
806
807I decided to provide a dynamic method of the C<$build> object, rather
808than just use a static list of files named in the F<Build.PL>, because
809these static lists can get difficult to manage. I usually prefer to
810keep the responsibility for registering temporary files close to the
811code that creates them.
812
813=item args()
814
815[version 0.26]
816
817 my $args_href = $build->args;
818 my %args = $build->args;
819 my $arg_value = $build->args($key);
820 $build->args($key, $value);
821
822This method is the preferred interface for retrieving the arguments passed via
823command line options to F<Build.PL> or F<Build>, minus the Module-Build
824specific options.
825
826When called in in a scalar context with no arguments, this method returns a
827reference to the hash storing all of the arguments; in an array context, it
828returns the hash itself. When passed a single argument, it returns the value
829stored in the args hash for that option key. When called with two arguments,
830the second argument is assigned to the args hash under the key passed as the
831first argument.
832
833=item autosplit_file($from, $to)
834
835[version 0.28]
836
7a827510 837Invokes the L<AutoSplit> module on the C<$from> file, sending the
dc8021d3 838output to the C<lib/auto> directory inside C<$to>. C<$to> is
839typically the C<blib/> directory.
840
841=item base_dir()
842
843[version 0.14]
844
845Returns a string containing the root-level directory of this build,
846i.e. where the C<Build.PL> script and the C<lib> directory can be
847found. This is usually the same as the current working directory,
848because the C<Build> script will C<chdir()> into this directory as
849soon as it begins execution.
850
851=item build_requires()
852
853[version 0.21]
854
855Returns a hash reference indicating the C<build_requires>
856prerequisites that were passed to the C<new()> method.
857
858=item check_installed_status($module, $version)
859
860[version 0.11]
861
862This method returns a hash reference indicating whether a version
863dependency on a certain module is satisfied. The C<$module> argument
864is given as a string like C<"Data::Dumper"> or C<"perl">, and the
7a827510 865C<$version> argument can take any of the forms described in L</requires>
dc8021d3 866above. This allows very fine-grained version checking.
867
868The returned hash reference has the following structure:
869
870 {
871 ok => $whether_the_dependency_is_satisfied,
872 have => $version_already_installed,
873 need => $version_requested, # Same as incoming $version argument
874 message => $informative_error_message,
875 }
876
877If no version of C<$module> is currently installed, the C<have> value
878will be the string C<< "<none>" >>. Otherwise the C<have> value will
879simply be the version of the installed module. Note that this means
880that if C<$module> is installed but doesn't define a version number,
881the C<have> value will be C<undef> - this is why we don't use C<undef>
882for the case when C<$module> isn't installed at all.
883
884This method may be called either as an object method
885(C<< $build->check_installed_status($module, $version) >>)
7a827510 886or as a class method
dc8021d3 887(C<< Module::Build->check_installed_status($module, $version) >>).
888
889=item check_installed_version($module, $version)
890
891[version 0.05]
892
7a827510 893Like L<check_installed_status()|/"check_installed_status($module, $version)">,
894but simply returns true or false depending on whether module
895C<$module> satisfies the dependency C<$version>.
dc8021d3 896
897If the check succeeds, the return value is the actual version of
898C<$module> installed on the system. This allows you to do the
899following:
900
901 my $installed = $build->check_installed_version('DBI', '1.15');
902 if ($installed) {
903 print "Congratulations, version $installed of DBI is installed.\n";
904 } else {
905 die "Sorry, you must install DBI.\n";
906 }
907
908If the check fails, we return false and set C<$@> to an informative
909error message.
910
911If C<$version> is any non-true value (notably zero) and any version of
912C<$module> is installed, we return true. In this case, if C<$module>
913doesn't define a version, or if its version is zero, we return the
914special value "0 but true", which is numerically zero, but logically
915true.
916
917In general you might prefer to use C<check_installed_status> if you
918need detailed information, or this method if you just need a yes/no
919answer.
920
921=item compare_versions($v1, $op, $v2)
922
923[version 0.28]
924
925Compares two module versions C<$v1> and C<$v2> using the operator
926C<$op>, which should be one of Perl's numeric operators like C<!=> or
927C<< >= >> or the like. We do at least a halfway-decent job of
928handling versions that aren't strictly numeric, like C<0.27_02>, but
929exotic stuff will likely cause problems.
930
931In the future, the guts of this method might be replaced with a call
932out to C<version.pm>.
933
77e96e88 934=item config($key)
935
936=item config($key, $value)
937
938=item config() [deprecated]
dc8021d3 939
940[version 0.22]
941
77e96e88 942With a single argument C<$key>, returns the value associated with that
943key in the C<Config.pm> hash, including any changes the author or user
7a827510 944has specified.
77e96e88 945
946With C<$key> and C<$value> arguments, sets the value for future
947callers of C<config($key)>.
948
949With no arguments, returns a hash reference containing all such
950key-value pairs. This usage is deprecated, though, because it's a
951resource hog and violates encapsulation.
dc8021d3 952
953=item config_data($name)
954
955=item config_data($name => $value)
956
957[version 0.26]
958
959With a single argument, returns the value of the configuration
960variable C<$name>. With two arguments, sets the given configuration
7a827510 961variable to the given value. The value may be any Perl scalar that's
dc8021d3 962serializable with C<Data::Dumper>. For instance, if you write a
963module that can use a MySQL or PostgreSQL back-end, you might create
964configuration variables called C<mysql_connect> and
965C<postgres_connect>, and set each to an array of connection parameters
966for C<< DBI->connect() >>.
967
968Configuration values set in this way using the Module::Build object
969will be available for querying during the build/test process and after
970installation via the generated C<...::ConfigData> module, as
971C<< ...::ConfigData->config($name) >>.
972
7a827510 973The L<feature()|/"feature($name)"> and C<config_data()> methods represent
dc8021d3 974Module::Build's main support for configuration of installed modules.
975See also L<Module::Build::Authoring/"SAVING CONFIGURATION INFORMATION">.
976
977=item conflicts()
978
979[version 0.21]
980
981Returns a hash reference indicating the C<conflicts> prerequisites
982that were passed to the C<new()> method.
983
984=item contains_pod($file)
985
986[version 0.20]
987
988[Deprecated] Please see L<Module::Build::ModuleInfo> instead.
989
990Returns true if the given file appears to contain POD documentation.
991Currently this checks whether the file has a line beginning with
992'=pod', '=head', or '=item', but the exact semantics may change in the
993future.
994
995=item copy_if_modified(%parameters)
996
997[version 0.19]
998
999Takes the file in the C<from> parameter and copies it to the file in
1000the C<to> parameter, or the directory in the C<to_dir> parameter, if
1001the file has changed since it was last copied (or if it doesn't exist
1002in the new location). By default the entire directory structure of
1003C<from> will be copied into C<to_dir>; an optional C<flatten>
1004parameter will copy into C<to_dir> without doing so.
1005
1006Returns the path to the destination file, or C<undef> if nothing
1007needed to be copied.
1008
1009Any directories that need to be created in order to perform the
1010copying will be automatically created.
1011
1012The destination file is set to read-only. If the source file has the
1013executable bit set, then the destination file will be made executable.
1014
1015=item create_build_script()
1016
1017[version 0.05]
1018
1019Creates an executable script called C<Build> in the current directory
1020that will be used to execute further user actions. This script is
1021roughly analogous (in function, not in form) to the Makefile created
1022by C<ExtUtils::MakeMaker>. This method also creates some temporary
1023data in a directory called C<_build/>. Both of these will be removed
1024when the C<realclean> action is performed.
1025
7253302f 1026Among the files created in C<_build/> is a F<_build/prereqs> file
1027containing the set of prerequisites for this distribution, as a hash
1028of hashes. This file may be C<eval()>-ed to obtain the authoritative
7a827510 1029set of prereqs, which might be different from the contents of
1030F<META.yml> (because F<Build.PL> might have set them dynamically).
1031But fancy developers take heed: do not put any fancy custom runtime
1032code in the F<_build/prereqs> file, leave it as a static declaration
1033containing only strings and numbers. Similarly, do not alter the
1034structure of the internal C<< $self->{properties}{requires} >> (etc.)
1035data members, because that's where this data comes from.
7253302f 1036
dc8021d3 1037=item current_action()
1038
1039[version 0.28]
1040
1041Returns the name of the currently-running action, such as "build" or
1042"test". This action is not necessarily the action that was originally
1043invoked by the user. For example, if the user invoked the "test"
1044action, current_action() would initially return "test". However,
1045action "test" depends on action "code", so current_action() will
1046return "code" while that dependency is being executed. Once that
1047action has completed, current_action() will again return "test".
1048
1049If you need to know the name of the original action invoked by the
7a827510 1050user, see L</invoked_action()> below.
dc8021d3 1051
1052=item depends_on(@actions)
1053
1054[version 0.28]
1055
1056Invokes the named action or list of actions in sequence. Using this
1057method is preferred to calling the action explicitly because it
1058performs some internal record-keeping, and it ensures that the same
1059action is not invoked multiple times (note: in future versions of
1060Module::Build it's conceivable that this run-only-once mechanism will
1061be changed to something more intelligent).
1062
1063Note that the name of this method is something of a misnomer; it
1064should really be called something like
1065C<invoke_actions_unless_already_invoked()> or something, but for
1066better or worse (perhaps better!) we were still thinking in
1067C<make>-like dependency terms when we created this method.
1068
7a827510 1069See also L<dispatch()|/"dispatch($action, %args)">. The main
1070distinction between the two is that C<depends_on()> is meant to call
1071an action from inside another action, whereas C<dispatch()> is meant
1072to set the very top action in motion.
dc8021d3 1073
1074=item dir_contains($first_dir, $second_dir)
1075
1076[version 0.28]
1077
1078Returns true if the first directory logically contains the second
1079directory. This is just a convenience function because C<File::Spec>
1080doesn't really provide an easy way to figure this out (but
1081C<Path::Class> does...).
1082
1083=item dispatch($action, %args)
1084
1085[version 0.03]
1086
1087Invokes the build action C<$action>. Optionally, a list of options
1088and their values can be passed in. This is equivalent to invoking an
1089action at the command line, passing in a list of options.
1090
1091Custom options that have not been registered must be passed in as a
1092hash reference in a key named "args":
1093
1094 $build->dispatch('foo', verbose => 1, args => { my_option => 'value' });
1095
1096This method is intended to be used to programmatically invoke build
1097actions, e.g. by applications controlling Module::Build-based builds
1098rather than by subclasses.
1099
7a827510 1100See also L<depends_on()|/"depends_on(@actions)">. The main
1101distinction between the two is that C<depends_on()> is meant to call
1102an action from inside another action, whereas C<dispatch()> is meant
1103to set the very top action in motion.
dc8021d3 1104
1105=item dist_dir()
1106
1107[version 0.28]
1108
1109Returns the name of the directory that will be created during the
1110C<dist> action. The name is derived from the C<dist_name> and
1111C<dist_version> properties.
1112
1113=item dist_name()
1114
1115[version 0.21]
1116
1117Returns the name of the current distribution, as passed to the
1118C<new()> method in a C<dist_name> or modified C<module_name>
1119parameter.
1120
1121=item dist_version()
1122
1123[version 0.21]
1124
1125Returns the version of the current distribution, as determined by the
1126C<new()> method from a C<dist_version>, C<dist_version_from>, or
1127C<module_name> parameter.
1128
1129=item do_system($cmd, @args)
1130
1131[version 0.21]
1132
1133This is a fairly simple wrapper around Perl's C<system()> built-in
1134command. Given a command and an array of optional arguments, this
1135method will print the command to C<STDOUT>, and then execute it using
1136Perl's C<system()>. It returns true or false to indicate success or
1137failure (the opposite of how C<system()> works, but more intuitive).
1138
1139Note that if you supply a single argument to C<do_system()>, it
1140will/may be processed by the systems's shell, and any special
1141characters will do their special things. If you supply multiple
1142arguments, no shell will get involved and the command will be executed
1143directly.
1144
1145=item feature($name)
1146
1147=item feature($name => $value)
1148
1149[version 0.26]
1150
1151With a single argument, returns true if the given feature is set.
1152With two arguments, sets the given feature to the given boolean value.
1153In this context, a "feature" is any optional functionality of an
1154installed module. For instance, if you write a module that could
1155optionally support a MySQL or PostgreSQL backend, you might create
1156features called C<mysql_support> and C<postgres_support>, and set them
1157to true/false depending on whether the user has the proper databases
1158installed and configured.
1159
1160Features set in this way using the Module::Build object will be
1161available for querying during the build/test process and after
7a827510 1162installation via the generated C<...::ConfigData> module, as
dc8021d3 1163C<< ...::ConfigData->feature($name) >>.
1164
1165The C<feature()> and C<config_data()> methods represent
1166Module::Build's main support for configuration of installed modules.
1167See also L<Module::Build::Authoring/"SAVING CONFIGURATION INFORMATION">.
1168
1169=item have_c_compiler()
1170
1171[version 0.21]
1172
1173Returns true if the current system seems to have a working C compiler.
1174We currently determine this by attempting to compile a simple C source
1175file and reporting whether the attempt was successful.
1176
1177=item install_base_relpaths()
1178
1179=item install_base_relpaths($type)
1180
1181=item install_base_relpaths($type => $path)
1182
1183[version 0.28]
1184
1185Set or retrieve the relative paths that are appended to
1186C<install_base> for any installable element. This is useful if you
1187want to set the relative install path for custom build elements.
1188
1189With no argument, it returns a reference to a hash containing all
1190elements and their respective values. This hash should not be modified
1191directly; use the multi-argument below form to change values.
1192
1193The single argument form returns the value associated with the
1194element C<$type>.
1195
1196The multi-argument form allows you to set the paths for element types.
1197C<$value> must be a relative path using unix-like paths. (A series of
1198directories seperated by slashes. Eg 'foo/bar'.) The return value is a
1199localized path based on C<$value>.
1200
1201Assigning the value C<undef> to an element causes it to be removed.
1202
1203=item install_destination($type)
1204
1205[version 0.28]
1206
1207Returns the directory in which items of type C<$type> (e.g. C<lib>,
7a827510 1208C<arch>, C<bin>, or anything else returned by the L</install_types()>
dc8021d3 1209method) will be installed during the C<install> action. Any settings
1210for C<install_path>, C<install_base>, and C<prefix> are taken into
1211account when determining the return value.
1212
1213=item install_path()
1214
1215=item install_path($type)
1216
1217=item install_path($type => $path)
1218
1219[version 0.28]
1220
1221Set or retrieve paths for specific installable elements. This is
1222useful when you want to examine any explicit install paths specified
1223by the user on the command line, or if you want to set the install
1224path for a specific installable element based on another attribute
1225like C<install_base()>.
1226
1227With no argument, it returns a reference to a hash containing all
1228elements and their respective values. This hash should not be modified
1229directly; use the multi-argument below form to change values.
1230
1231The single argument form returns the value associated with the
1232element C<$type>.
1233
1234The multi-argument form allows you to set the paths for element types.
1235The supplied C<$path> should be an absolute path to install elements
1236of C<$type>. The return value is C<$path>.
1237
1238Assigning the value C<undef> to an element causes it to be removed.
1239
1240=item install_types()
1241
1242[version 0.28]
1243
1244Returns a list of installable types that this build knows about.
1245These types each correspond to the name of a directory in F<blib/>,
1246and the list usually includes items such as C<lib>, C<arch>, C<bin>,
1247C<script>, C<libdoc>, C<bindoc>, and if HTML documentation is to be
1248built, C<libhtml> and C<binhtml>. Other user-defined types may also
1249exist.
1250
1251=item invoked_action()
1252
1253[version 0.28]
1254
1255This is the name of the original action invoked by the user. This
1256value is set when the user invokes F<Build.PL>, the F<Build> script,
7a827510 1257or programatically through the L<dispatch()|/"dispatch($action, %args)">
1258method. It does not change as sub-actions are executed as
1259dependencies are evaluated.
dc8021d3 1260
1261To get the name of the currently executing dependency, see
7a827510 1262L</current_action()> above.
dc8021d3 1263
1264=item notes()
1265
1266=item notes($key)
1267
1268=item notes($key => $value)
1269
1270[version 0.20]
1271
1272The C<notes()> value allows you to store your own persistent
1273information about the build, and to share that information among
1274different entities involved in the build. See the example in the
1275C<current()> method.
1276
1277The C<notes()> method is essentally a glorified hash access. With no
1278arguments, C<notes()> returns the entire hash of notes. With one argument,
1279C<notes($key)> returns the value associated with the given key. With two
1280arguments, C<notes($key, $value)> sets the value associated with the given key
1281to C<$value> and returns the new value.
1282
1283The lifetime of the C<notes> data is for "a build" - that is, the
1284C<notes> hash is created when C<perl Build.PL> is run (or when the
1285C<new()> method is run, if the Module::Build Perl API is being used
1286instead of called from a shell), and lasts until C<perl Build.PL> is
1287run again or the C<clean> action is run.
1288
1289=item orig_dir()
1290
1291[version 0.28]
1292
1293Returns a string containing the working directory that was in effect
1294before the F<Build> script chdir()-ed into the C<base_dir>. This
1295might be useful for writing wrapper tools that might need to chdir()
1296back out.
1297
1298=item os_type()
1299
1300[version 0.04]
1301
1302If you're subclassing Module::Build and some code needs to alter its
1303behavior based on the current platform, you may only need to know
1304whether you're running on Windows, Unix, MacOS, VMS, etc., and not the
1305fine-grained value of Perl's C<$^O> variable. The C<os_type()> method
1306will return a string like C<Windows>, C<Unix>, C<MacOS>, C<VMS>, or
1307whatever is appropriate. If you're running on an unknown platform, it
1308will return C<undef> - there shouldn't be many unknown platforms
1309though.
1310
c1d8f74e 1311=item is_vmsish()
1312
1313=item is_windowsish()
1314
1315=item is_unixish()
1316
1317Convenience functions that return a boolean value indicating whether
1318this platform behaves respectively like VMS, Windows, or Unix. For
1319arbitrary reasons other platforms don't get their own such functions,
1320at least not yet.
1321
1322
dc8021d3 1323=item prefix_relpaths()
1324
1325=item prefix_relpaths($installdirs)
1326
1327=item prefix_relpaths($installdirs, $type)
1328
1329=item prefix_relpaths($installdirs, $type => $path)
1330
1331[version 0.28]
1332
1333Set or retrieve the relative paths that are appended to C<prefix> for
1334any installable element. This is useful if you want to set the
1335relative install path for custom build elements.
1336
1337With no argument, it returns a reference to a hash containing all
1338elements and their respective values as defined by the current
1339C<installdirs> setting.
1340
1341With a single argument, it returns a reference to a hash containing
1342all elements and their respective values as defined by
1343C<$installdirs>.
1344
1345The hash returned by the above calls should not be modified directly;
1346use the three-argument below form to change values.
1347
1348The two argument form returns the value associated with the
1349element C<$type>.
1350
1351The multi-argument form allows you to set the paths for element types.
1352C<$value> must be a relative path using unix-like paths. (A series of
1353directories seperated by slashes. Eg 'foo/bar'.) The return value is a
1354localized path based on C<$value>.
1355
1356Assigning the value C<undef> to an element causes it to be removed.
1357
1358=item prepare_metadata()
1359
1360[version 0.28]
1361
1362This method is provided for authors to override to customize the
1363fields of F<META.yml>. It is passed a YAML::Node node object which can
1364be modified as desired and then returned. E.g.
1365
1366 package My::Builder;
1367 use base 'Module::Build';
1368
1369 sub prepare_metadata {
1370 my $self = shift;
1371 my $node = $self->SUPER::prepare_metadata( shift );
1372 $node->{custom_field} = 'foo';
1373 return $node;
1374 }
1375
1376=item prereq_failures()
1377
1378[version 0.11]
1379
1380Returns a data structure containing information about any failed
1381prerequisites (of any of the types described above), or C<undef> if
1382all prerequisites are met.
1383
1384The data structure returned is a hash reference. The top level keys
1385are the type of prerequisite failed, one of "requires",
1386"build_requires", "conflicts", or "recommends". The associated values
1387are hash references whose keys are the names of required (or
1388conflicting) modules. The associated values of those are hash
1389references indicating some information about the failure. For example:
1390
1391 {
1392 have => '0.42',
1393 need => '0.59',
1394 message => 'Version 0.42 is installed, but we need version 0.59',
1395 }
1396
1397or
1398
1399 {
1400 have => '<none>',
1401 need => '0.59',
1402 message => 'Prerequisite Foo isn't installed',
1403 }
1404
1405This hash has the same structure as the hash returned by the
1406C<check_installed_status()> method, except that in the case of
1407"conflicts" dependencies we change the "need" key to "conflicts" and
1408construct a proper message.
1409
1410Examples:
1411
1412 # Check a required dependency on Foo::Bar
1413 if ( $build->prereq_failures->{requires}{Foo::Bar} ) { ...
1414
1415 # Check whether there were any failures
1416 if ( $build->prereq_failures ) { ...
1417
1418 # Show messages for all failures
1419 my $failures = $build->prereq_failures;
1420 while (my ($type, $list) = each %$failures) {
1421 while (my ($name, $hash) = each %$list) {
1422 print "Failure for $name: $hash->{message}\n";
1423 }
1424 }
1425
1426=item prereq_report()
1427
1428[version 0.28]
1429
1430Returns a human-readable (table-form) string showing all
1431prerequisites, the versions required, and the versions actually
1432installed. This can be useful for reviewing the configuration of your
1433system prior to a build, or when compiling data to send for a bug
1434report. The C<prereq_report> action is just a thin wrapper around the
1435C<prereq_report()> method.
1436
1437=item prompt($message, $default)
1438
1439[version 0.12]
1440
1441Asks the user a question and returns their response as a string. The
1442first argument specifies the message to display to the user (for
1443example, C<"Where do you keep your money?">). The second argument,
1444which is optional, specifies a default answer (for example,
1445C<"wallet">). The user will be asked the question once.
1446
1447If C<prompt()> detects that it is not running interactively and there
1448is nothing on STDIN or if the PERL_MM_USE_DEFAULT environment variable
7253302f 1449is set to true, the $default will be used without prompting.
1450
1451To prevent automated processes from blocking, the user must either set
1452PERL_MM_USE_DEFAULT or attach something to STDIN (this can be a
1453pipe/file containing a scripted set of answers or /dev/null.)
dc8021d3 1454
7253302f 1455If no $default is provided an empty string will be used instead. In
1456non-interactive mode, the absence of $default is an error (though
1457explicitly passing C<undef()> as the default is valid as of 0.27.)
dc8021d3 1458
1459This method may be called as a class or object method.
1460
1461=item recommends()
1462
1463[version 0.21]
1464
1465Returns a hash reference indicating the C<recommends> prerequisites
1466that were passed to the C<new()> method.
1467
1468=item requires()
1469
1470[version 0.21]
1471
1472Returns a hash reference indicating the C<requires> prerequisites that
1473were passed to the C<new()> method.
1474
1475=item rscan_dir($dir, $pattern)
1476
1477[version 0.28]
1478
1479Uses C<File::Find> to traverse the directory C<$dir>, returning a
1480reference to an array of entries matching C<$pattern>. C<$pattern>
1481may either be a regular expression (using C<qr//> or just a plain
1482string), or a reference to a subroutine that will return true for
1483wanted entries. If C<$pattern> is not given, all entries will be
1484returned.
1485
1486Examples:
1487
1488 # All the *.pm files in lib/
1489 $m->rscan_dir('lib', qr/\.pm$/)
7a827510 1490
dc8021d3 1491 # All the files in blib/ that aren't *.html files
1492 $m->rscan_dir('blib', sub {-f $_ and not /\.html$/});
1493
1494 # All the files in t/
1495 $m->rscan_dir('t');
1496
1497=item runtime_params()
1498
1499=item runtime_params($key)
1500
1501[version 0.28]
1502
1503The C<runtime_params()> method stores the values passed on the command line
1504for valid properties (that is, any command line options for which
1505C<valid_property()> returns a true value). The value on the command line may
1506override the default value for a property, as well as any value specified in a
1507call to C<new()>. This allows you to programmatically tell if C<perl Build.PL>
1508or any execution of C<./Build> had command line options specified that
1509override valid properties.
1510
1511The C<runtime_params()> method is essentally a glorified read-only hash. With
1512no arguments, C<runtime_params()> returns the entire hash of properties
1513specified on the command line. With one argument, C<runtime_params($key)>
1514returns the value associated with the given key.
1515
1516The lifetime of the C<runtime_params> data is for "a build" - that is, the
1517C<runtime_params> hash is created when C<perl Build.PL> is run (or when the
1518C<new()> method is called, if the Module::Build Perl API is being used instead
1519of called from a shell), and lasts until C<perl Build.PL> is run again or the
1520C<clean> action is run.
1521
1522=item script_files()
1523
1524[version 0.18]
1525
1526Returns a hash reference whose keys are the perl script files to be
1527installed, if any. This corresponds to the C<script_files> parameter to the
1528C<new()> method. With an optional argument, this parameter may be set
1529dynamically.
1530
1531For backward compatibility, the C<scripts()> method does exactly the
1532same thing as C<script_files()>. C<scripts()> is deprecated, but it
1533will stay around for several versions to give people time to
1534transition.
1535
1536=item up_to_date($source_file, $derived_file)
1537
1538=item up_to_date(\@source_files, \@derived_files)
1539
1540[version 0.20]
1541
1542This method can be used to compare a set of source files to a set of
1543derived files. If any of the source files are newer than any of the
1544derived files, it returns false. Additionally, if any of the derived
1545files do not exist, it returns false. Otherwise it returns true.
1546
1547The arguments may be either a scalar or an array reference of file
1548names.
1549
1550=item y_n($message, $default)
1551
1552[version 0.12]
1553
1554Asks the user a yes/no question using C<prompt()> and returns true or
1555false accordingly. The user will be asked the question repeatedly
1556until they give an answer that looks like "yes" or "no".
1557
1558The first argument specifies the message to display to the user (for
1559example, C<"Shall I invest your money for you?">), and the second
1560argument specifies the default answer (for example, C<"y">).
1561
1562Note that the default is specified as a string like C<"y"> or C<"n">,
1563and the return value is a Perl boolean value like 1 or 0. I thought
1564about this for a while and this seemed like the most useful way to do
1565it.
1566
1567This method may be called as a class or object method.
1568
1569=back
1570
1571
1572=head2 Autogenerated Accessors
1573
1574In addition to the aforementioned methods, there are also some get/set
1575accessor methods for the following properties:
1576
1577=over 4
1578
1579=item PL_files()
1580
0ec9ad96 1581=item allow_mb_mismatch()
1582
dc8021d3 1583=item autosplit()
1584
1585=item base_dir()
1586
1587=item bindoc_dirs()
1588
1589=item blib()
1590
1591=item build_bat()
1592
1593=item build_class()
1594
1595=item build_elements()
1596
1597=item build_requires()
1598
1599=item build_script()
1600
1601=item c_source()
1602
dc8021d3 1603=item config_dir()
1604
7a827510 1605=item configure_requires()
1606
dc8021d3 1607=item conflicts()
1608
1609=item create_makefile_pl()
1610
1611=item create_packlist()
1612
1613=item create_readme()
1614
1615=item debugger()
1616
1617=item destdir()
1618
1619=item get_options()
1620
1621=item html_css()
1622
1623=item include_dirs()
1624
1625=item install_base()
1626
1627=item install_sets()
1628
1629=item installdirs()
1630
1631=item libdoc_dirs()
1632
1633=item license()
1634
1635=item magic_number()
1636
1637=item mb_version()
1638
1639=item meta_add()
1640
1641=item meta_merge()
1642
1643=item metafile()
1644
1645=item module_name()
1646
1647=item orig_dir()
1648
1649=item original_prefix()
1650
1651=item perl()
1652
1653=item pm_files()
1654
1655=item pod_files()
1656
1657=item pollute()
1658
1659=item prefix()
1660
1661=item prereq_action_types()
1662
1663=item quiet()
1664
1665=item recommends()
1666
1667=item recurse_into()
1668
1669=item recursive_test_files()
1670
1671=item requires()
1672
1673=item scripts()
1674
1675=item use_rcfile()
1676
1677=item verbose()
1678
1679=item xs_files()
1680
1681=back
1682
1683
7a827510 1684=head1 MODULE METADATA
1685
1686If you would like to add other useful metadata, C<Module::Build>
1687supports this with the C<meta_add> and C<meta_merge> arguments to
1688L</new>. The authoritative list of supported metadata can be found at
1689L<http://module-build.sourceforge.net/META-spec-current.html>, but for
1690convenience - here are a few of the more useful ones:
1691
1692=over 4
1693
1694=item keywords
1695
1696For describing the distribution using keyword (or "tags") in order to
1697make CPAN.org indexing and search more efficient and useful.
1698
1699See L<http://module-build.sourceforge.net/META-spec-current.html#keywords>.
1700
1701=item resources
1702
1703A list of additional resources available for users of the
1704distribution. This can include links to a homepage on the web, a
1705bugtracker, the repository location, a even subscription page for the
1706distribution mailing list.
1707
1708See L<http://module-build.sourceforge.net/META-spec-current.html#resources>.
1709
1710=back
1711
1712
dc8021d3 1713=head1 AUTHOR
1714
1715Ken Williams <kwilliams@cpan.org>
1716
1717
1718=head1 COPYRIGHT
1719
1720Copyright (c) 2001-2006 Ken Williams. All rights reserved.
1721
1722This library is free software; you can redistribute it and/or
1723modify it under the same terms as Perl itself.
1724
1725
1726=head1 SEE ALSO
1727
1728perl(1), L<Module::Build>(3), L<Module::Build::Authoring>(3),
1729L<Module::Build::Cookbook>(3), L<ExtUtils::MakeMaker>(3), L<YAML>(3)
1730
1731F<META.yml> Specification:
77e96e88 1732L<http://module-build.sourceforge.net/META-spec-current.html>
dc8021d3 1733
1734=cut