Upgrade to Test::Harness 2.57_05
[p5sagit/p5-mst-13.2.git] / lib / Module / Build.pm
CommitLineData
bb4e9162 1package Module::Build;
2
3# This module doesn't do much of anything itself, it inherits from the
4# modules that do the real work. The only real thing it has to do is
5# figure out which OS-specific module to pull in. Many of the
6# OS-specific modules don't do anything either - most of the work is
7# done in Module::Build::Base.
8
9use strict;
10use File::Spec ();
11use File::Path ();
12use File::Basename ();
13
14use Module::Build::Base;
15
16use vars qw($VERSION @ISA);
17@ISA = qw(Module::Build::Base);
a314697d 18$VERSION = '0.27_10';
bb4e9162 19$VERSION = eval $VERSION;
20
21# Okay, this is the brute-force method of finding out what kind of
22# platform we're on. I don't know of a systematic way. These values
23# came from the latest (bleadperl) perlport.pod.
24
25my %OSTYPES = qw(
26 aix Unix
27 bsdos Unix
28 dgux Unix
29 dynixptx Unix
30 freebsd Unix
31 linux Unix
32 hpux Unix
33 irix Unix
34 darwin Unix
35 machten Unix
36 next Unix
37 openbsd Unix
38 netbsd Unix
39 dec_osf Unix
40 svr4 Unix
41 svr5 Unix
42 sco_sv Unix
43 unicos Unix
44 unicosmk Unix
45 solaris Unix
46 sunos Unix
47 cygwin Unix
48 os2 Unix
49
50 dos Windows
51 MSWin32 Windows
52
53 os390 EBCDIC
54 os400 EBCDIC
55 posix-bc EBCDIC
56 vmesa EBCDIC
57
58 MacOS MacOS
59 VMS VMS
60 VOS VOS
61 riscos RiscOS
62 amigaos Amiga
63 mpeix MPEiX
64 );
65
66# Inserts the given module into the @ISA hierarchy between
67# Module::Build and its immediate parent
68sub _interpose_module {
69 my ($self, $mod) = @_;
70 eval "use $mod";
71 die $@ if $@;
72
73 no strict 'refs';
74 my $top_class = $mod;
75 while (@{"${top_class}::ISA"}) {
76 last if ${"${top_class}::ISA"}[0] eq $ISA[0];
77 $top_class = ${"${top_class}::ISA"}[0];
78 }
79
80 @{"${top_class}::ISA"} = @ISA;
81 @ISA = ($mod);
82}
83
84if (grep {-e File::Spec->catfile($_, qw(Module Build Platform), $^O) . '.pm'} @INC) {
85 __PACKAGE__->_interpose_module("Module::Build::Platform::$^O");
86
87} elsif (exists $OSTYPES{$^O}) {
88 __PACKAGE__->_interpose_module("Module::Build::Platform::$OSTYPES{$^O}");
89
90} else {
91 warn "Unknown OS type '$^O' - using default settings\n";
92}
93
94sub os_type { $OSTYPES{$^O} }
95
961;
97
98__END__
99
100
101=head1 NAME
102
103Module::Build - Build and install Perl modules
104
105
106=head1 SYNOPSIS
107
108Standard process for building & installing modules:
109
110 perl Build.PL
111 ./Build
112 ./Build test
113 ./Build install
114
115Or, if you're on a platform (like DOS or Windows) that doesn't require
116the "./" notation, you can do this:
117
118 perl Build.PL
119 Build
120 Build test
121 Build install
122
123
124=head1 DESCRIPTION
125
126C<Module::Build> is a system for building, testing, and installing
127Perl modules. It is meant to be an alternative to
128C<ExtUtils::MakeMaker>. Developers may alter the behavior of the
129module through subclassing in a much more straightforward way than
130with C<MakeMaker>. It also does not require a C<make> on your system
131- most of the C<Module::Build> code is pure-perl and written in a very
132cross-platform way. In fact, you don't even need a shell, so even
133platforms like MacOS (traditional) can use it fairly easily. Its only
134prerequisites are modules that are included with perl 5.6.0, and it
135works fine on perl 5.005 if you can install a few additional modules.
136
137See L<"MOTIVATIONS"> for more comparisons between C<ExtUtils::MakeMaker>
138and C<Module::Build>.
139
140To install C<Module::Build>, and any other module that uses
141C<Module::Build> for its installation process, do the following:
142
143 perl Build.PL # 'Build.PL' script creates the 'Build' script
144 ./Build # Need ./ to ensure we're using this "Build" script
145 ./Build test # and not another one that happens to be in the PATH
146 ./Build install
147
148This illustrates initial configuration and the running of three
149'actions'. In this case the actions run are 'build' (the default
150action), 'test', and 'install'. Other actions defined so far include:
151
47f13fd5 152 build install
153 clean manifest
154 code manpages
155 config_data ppd
156 diff ppmdist
157 dist prereq_report
158 distcheck pure_install
159 distclean realclean
160 distdir skipcheck
161 distmeta test
162 distsign testcover
163 disttest testdb
164 docs testpod
165 fakeinstall testpodcoverage
bb4e9162 166 help versioninstall
47f13fd5 167 html
bb4e9162 168
169
170You can run the 'help' action for a complete list of actions.
171
172
173=head1 GUIDE TO DOCUMENTATION
174
175The documentation for C<Module::Build> is broken up into three sections:
176
177=over
178
179=item General Usage (L<Module::Build>)
180
181This is the document you are currently reading. It describes basic
182usage and background information. Its main purpose is to assist the
183user who wants to learn how to invoke and control C<Module::Build>
184scripts at the command line.
185
186=item Authoring Reference (L<Module::Build::Authoring>)
187
188This document describes the C<Module::Build> API for authors who are
189writing F<Build.PL> scripts for a distribution or controlling
190C<Module::Build> processes programmatically. It describes the
191methods available as well as providing general information on
192subclassing C<Module::Build> to alter and extend its behavior. Also,
193there is a section on controlling the Build process from other
194scripts, including how to construct an object and how to invoke
195actions through it from an external script.
196
197=item Cookbook (L<Module::Build::Cookbook>)
198
199This document demonstrates how to accomplish many common tasks. It
200covers general command line usage and authoring of F<Build.PL>
201scripts. Includes working examples.
202
203=back
204
205
206=head1 ACTIONS
207
208There are some general principles at work here. First, each task when
209building a module is called an "action". These actions are listed
210above; they correspond to the building, testing, installing,
211packaging, etc., tasks.
212
213Second, arguments are processed in a very systematic way. Arguments
214are always key=value pairs. They may be specified at C<perl Build.PL>
215time (i.e. C<perl Build.PL destdir=/my/secret/place>), in which case
216their values last for the lifetime of the C<Build> script. They may
217also be specified when executing a particular action (i.e.
218C<Build test verbose=1>), in which case their values last only for the
219lifetime of that command. Per-action command line parameters take
220precedence over parameters specified at C<perl Build.PL> time.
221
222The build process also relies heavily on the C<Config.pm> module, and
223all the key=value pairs in C<Config.pm> are available in
224
225C<< $self->{config} >>. If the user wishes to override any of the
226values in C<Config.pm>, she may specify them like so:
227
228 perl Build.PL --config cc=gcc --config ld=gcc
229
230The following build actions are provided by default.
231
232=over 4
233
234=item build
235
a314697d 236[version 0.01]
237
bb4e9162 238If you run the C<Build> script without any arguments, it runs the
239C<build> action, which in turn runs the C<code> and C<docs> actions.
240
241This is analogous to the MakeMaker 'make all' target.
242
243=item clean
244
a314697d 245[version 0.01]
246
bb4e9162 247This action will clean up any files that the build process may have
248created, including the C<blib/> directory (but not including the
249C<_build/> directory and the C<Build> script itself).
250
251=item code
252
a314697d 253[version 0.20]
254
bb4e9162 255This action builds your codebase.
256
257By default it just creates a C<blib/> directory and copies any C<.pm>
258and C<.pod> files from your C<lib/> directory into the C<blib/>
259directory. It also compiles any C<.xs> files from C<lib/> and places
260them in C<blib/>. Of course, you need a working C compiler (probably
261the same one that built perl itself) for the compilation to work
262properly.
263
264The C<code> action also runs any C<.PL> files in your F<lib/>
265directory. Typically these create other files, named the same but
266without the C<.PL> ending. For example, a file F<lib/Foo/Bar.pm.PL>
267could create the file F<lib/Foo/Bar.pm>. The C<.PL> files are
268processed first, so any C<.pm> files (or other kinds that we deal
269with) will get copied correctly.
270
271=item config_data
272
a314697d 273[version 0.26]
274
bb4e9162 275...
276
277=item diff
278
a314697d 279[version 0.14]
280
bb4e9162 281This action will compare the files about to be installed with their
282installed counterparts. For .pm and .pod files, a diff will be shown
283(this currently requires a 'diff' program to be in your PATH). For
284other files like compiled binary files, we simply report whether they
285differ.
286
287A C<flags> parameter may be passed to the action, which will be passed
288to the 'diff' program. Consult your 'diff' documentation for the
289parameters it will accept - a good one is C<-u>:
290
291 ./Build diff flags=-u
292
293=item dist
294
a314697d 295[version 0.02]
296
bb4e9162 297This action is helpful for module authors who want to package up their
298module for source distribution through a medium like CPAN. It will create a
299tarball of the files listed in F<MANIFEST> and compress the tarball using
300GZIP compression.
301
302By default, this action will use the external C<tar> and C<gzip>
303executables on Unix-like platforms, and the C<Archive::Tar> module
304elsewhere. However, you can force it to use whatever executable you
305want by supplying an explicit C<tar> (and optional C<gzip>) parameter:
306
307 ./Build dist --tar C:\path\to\tar.exe --gzip C:\path\to\zip.exe
308
309=item distcheck
310
a314697d 311[version 0.05]
312
bb4e9162 313Reports which files are in the build directory but not in the
314F<MANIFEST> file, and vice versa. (See L<manifest> for details.)
315
316=item distclean
317
a314697d 318[version 0.05]
319
bb4e9162 320Performs the 'realclean' action and then the 'distcheck' action.
321
322=item distdir
323
a314697d 324[version 0.05]
325
bb4e9162 326Creates a "distribution directory" named C<$dist_name-$dist_version>
327(if that directory already exists, it will be removed first), then
328copies all the files listed in the F<MANIFEST> file to that directory.
329This directory is what the distribution tarball is created from.
330
331=item distmeta
332
a314697d 333[version 0.21]
334
bb4e9162 335Creates the F<META.yml> file that describes the distribution.
336
337F<META.yml> is a file containing various bits of "metadata" about the
338distribution. The metadata includes the distribution name, version,
339abstract, prerequisites, license, and various other data about the
a314697d 340distribution. This file is created as F<META.yml> in YAML format.
341It is recommended that the C<YAML> module be installed to create it.
342If the C<YAML> module is not installed, an internal module supplied
343with Module::Build will be used to write the META.yml file, and this
344will most likely be fine.
345
bb4e9162 346F<META.yml> file must also be listed in F<MANIFEST> - if it's not, a
347warning will be issued.
348
349The current version of the F<META.yml> specification can be found at
350L<http://module-build.sourceforge.net/META-spec-v1.2.html>
351
352=item distsign
353
a314697d 354[version 0.16]
355
bb4e9162 356Uses C<Module::Signature> to create a SIGNATURE file for your
357distribution, and adds the SIGNATURE file to the distribution's
358MANIFEST.
359
360=item disttest
361
a314697d 362[version 0.05]
363
bb4e9162 364Performs the 'distdir' action, then switches into that directory and
365runs a C<perl Build.PL>, followed by the 'build' and 'test' actions in
366that directory.
367
368=item docs
369
a314697d 370[version 0.20]
371
bb4e9162 372This will generate documentation (e.g. Unix man pages and html
373documents) for any installable items under B<blib/> that
374contain POD. If there are no C<bindoc> or C<libdoc> installation
375targets defined (as will be the case on systems that don't support
376Unix manpages) no action is taken for manpages. If there are no
377C<binhtml> or C<libhtml> installation targets defined no action is
378taken for html documents.
379
380=item fakeinstall
381
a314697d 382[version 0.02]
383
bb4e9162 384This is just like the C<install> action, but it won't actually do
385anything, it will just report what it I<would> have done if you had
386actually run the C<install> action.
387
388=item help
389
a314697d 390[version 0.03]
391
bb4e9162 392This action will simply print out a message that is meant to help you
393use the build process. It will show you a list of available build
394actions too.
395
396With an optional argument specifying an action name (e.g. C<Build help
397test>), the 'help' action will show you any POD documentation it can
398find for that action.
399
400=item html
401
a314697d 402[version 0.26]
403
bb4e9162 404This will generate HTML documentation for any binary or library files
405under B<blib/> that contain POD. The HTML documentation will only be
406installed if the install paths can be determined from values in
407C<Config.pm>. You can also supply or override install paths on the
408command line by specifying C<install_path> values for the C<binhtml>
409and/or C<libhtml> installation targets.
410
411=item install
412
a314697d 413[version 0.01]
414
bb4e9162 415This action will use C<ExtUtils::Install> to install the files from
416C<blib/> into the system. See L<INSTALL PATHS>
417for details about how Module::Build determines where to install
418things, and how to influence this process.
419
420If you want the installation process to look around in C<@INC> for
421other versions of the stuff you're installing and try to delete it,
422you can use the C<uninst> parameter, which tells C<ExtUtils::Install> to
423do so:
424
425 ./Build install uninst=1
426
427This can be a good idea, as it helps prevent multiple versions of a
428module from being present on your system, which can be a confusing
429situation indeed.
430
431=item manifest
432
a314697d 433[version 0.05]
434
bb4e9162 435This is an action intended for use by module authors, not people
436installing modules. It will bring the F<MANIFEST> up to date with the
437files currently present in the distribution. You may use a
438F<MANIFEST.SKIP> file to exclude certain files or directories from
439inclusion in the F<MANIFEST>. F<MANIFEST.SKIP> should contain a bunch
440of regular expressions, one per line. If a file in the distribution
441directory matches any of the regular expressions, it won't be included
442in the F<MANIFEST>.
443
444The following is a reasonable F<MANIFEST.SKIP> starting point, you can
445add your own stuff to it:
446
447 ^_build
448 ^Build$
449 ^blib
450 ~$
451 \.bak$
452 ^MANIFEST\.SKIP$
453 CVS
454
455See the L<distcheck> and L<skipcheck> actions if you want to find out
456what the C<manifest> action would do, without actually doing anything.
457
458=item manpages
459
a314697d 460[version 0.28]
461
bb4e9162 462This will generate man pages for any binary or library files under
463B<blib/> that contain POD. The man pages will only be installed if the
464install paths can be determined from values in C<Config.pm>. You can
465also supply or override install paths by specifying there values on
466the command line with the C<bindoc> and C<libdoc> installation
467targets.
468
469=item ppd
470
a314697d 471[version 0.20]
472
bb4e9162 473Build a PPD file for your distribution.
474
475This action takes an optional argument C<codebase> which is used in
476the generated ppd file to specify the (usually relative) URL of the
477distribution. By default, this value is the distribution name without
478any path information.
479
480Example:
481
482 ./Build ppd --codebase "MSWin32-x86-multi-thread/Module-Build-0.21.tar.gz"
483
484=item ppmdist
485
a314697d 486[version 0.23]
487
bb4e9162 488Generates a PPM binary distribution and a PPD description file. This
489action also invokes the 'ppd' action, so it can accept the same
490C<codebase> argument described under that action.
491
492This uses the same mechanism as the C<dist> action to tar & zip its
493output, so you can supply C<tar> and/or C<gzip> parameters to affect
494the result.
495
496=item prereq_report
497
a314697d 498[version 0.28]
499
bb4e9162 500This action prints out a list of all prerequisites, the versions required, and
501the versions actually installed. This can be useful for reviewing the
502configuration of your system prior to a build, or when compiling data to send
503for a bug report.
504
505=item pure_install
506
a314697d 507[version 0.28]
508
bb4e9162 509This action is identical to the C<install> action. In the future,
510though, if C<install> starts writing to the file file
511F<$(INSTALLARCHLIB)/perllocal.pod>, C<pure_install> won't, and that
512will be the only difference between them.
513
514=item realclean
515
a314697d 516[version 0.01]
517
bb4e9162 518This action is just like the C<clean> action, but also removes the
519C<_build> directory and the C<Build> script. If you run the
520C<realclean> action, you are essentially starting over, so you will
521have to re-create the C<Build> script again.
522
523=item skipcheck
524
a314697d 525[version 0.05]
526
bb4e9162 527Reports which files are skipped due to the entries in the
528F<MANIFEST.SKIP> file (See L<manifest> for details)
529
530=item test
531
a314697d 532[version 0.01]
533
bb4e9162 534This will use C<Test::Harness> to run any regression tests and report
535their results. Tests can be defined in the standard places: a file
536called C<test.pl> in the top-level directory, or several files ending
537with C<.t> in a C<t/> directory.
538
539If you want tests to be 'verbose', i.e. show details of test execution
540rather than just summary information, pass the argument C<verbose=1>.
541
542If you want to run tests under the perl debugger, pass the argument
543C<debugger=1>.
544
545In addition, if a file called C<visual.pl> exists in the top-level
546directory, this file will be executed as a Perl script and its output
547will be shown to the user. This is a good place to put speed tests or
548other tests that don't use the C<Test::Harness> format for output.
549
550To override the choice of tests to run, you may pass a C<test_files>
551argument whose value is a whitespace-separated list of test scripts to
552run. This is especially useful in development, when you only want to
553run a single test to see whether you've squashed a certain bug yet:
554
555 ./Build test --test_files t/something_failing.t
556
557You may also pass several C<test_files> arguments separately:
558
559 ./Build test --test_files t/one.t --test_files t/two.t
560
561or use a C<glob()>-style pattern:
562
563 ./Build test --test_files 't/01-*.t'
564
565=item testcover
566
a314697d 567[version 0.26]
568
bb4e9162 569Runs the C<test> action using C<Devel::Cover>, generating a
570code-coverage report showing which parts of the code were actually
571exercised during the tests.
572
573To pass options to C<Devel::Cover>, set the C<$DEVEL_COVER_OPTIONS>
574environment variable:
575
576 DEVEL_COVER_OPTIONS=-ignore,Build ./Build testcover
577
578=item testdb
579
a314697d 580[version 0.05]
581
bb4e9162 582This is a synonym for the 'test' action with the C<debugger=1>
583argument.
584
585=item testpod
586
a314697d 587[version 0.25]
588
bb4e9162 589This checks all the files described in the C<docs> action and
590produces C<Test::Harness>-style output. If you are a module author,
591this is useful to run before creating a new release.
592
a314697d 593=item testpodcoverage
594
595[version 0.28]
596
597This checks the pod coverage of the distribution and
598produces C<Test::Harness>-style output. If you are a module author,
599this is useful to run before creating a new release.
600
bb4e9162 601=item versioninstall
602
a314697d 603[version 0.16]
604
bb4e9162 605** Note: since C<only.pm> is so new, and since we just recently added
606support for it here too, this feature is to be considered
607experimental. **
608
609If you have the C<only.pm> module installed on your system, you can
610use this action to install a module into the version-specific library
611trees. This means that you can have several versions of the same
612module installed and C<use> a specific one like this:
613
614 use only MyModule => 0.55;
615
616To override the default installation libraries in C<only::config>,
617specify the C<versionlib> parameter when you run the C<Build.PL> script:
618
619 perl Build.PL --versionlib /my/version/place/
620
621To override which version the module is installed as, specify the
622C<versionlib> parameter when you run the C<Build.PL> script:
623
624 perl Build.PL --version 0.50
625
626See the C<only.pm> documentation for more information on
627version-specific installs.
628
629=back
630
631
632=head1 OPTIONS
633
634=head2 Command Line Options
635
636The following options can be used during any invocation of C<Build.PL>
637or the Build script, during any action. For information on other
638options specific to an action, see the documentation for the
639respective action.
640
641NOTE: There is some preliminary support for options to use the more
642familiar long option style. Most options can be preceded with the
643C<--> long option prefix, and the underscores changed to dashes
644(e.g. --use-rcfile). Additionally, the argument to boolean options is
645optional, and boolean options can be negated by prefixing them with
646'no' or 'no-' (e.g. --noverbose or --no-verbose).
647
648=over 4
649
650=item quiet
651
652Suppress informative messages on output.
653
654=item use_rcfile
655
656Load the F<~/.modulebuildrc> option file. This option can be set to
657false to prevent the custom resource file from being loaded.
658
659=item verbose
660
661Display extra information about the Build on output.
662
663=back
664
665
666=head2 Default Options File (F<.modulebuildrc>)
667
a314697d 668[version 0.28]
669
bb4e9162 670When Module::Build starts up, it will look for a file,
671F<$ENV{HOME}/.modulebuildrc>. If the file exists, the options
672specified there will be used as defaults, as if they were typed on the
673command line. The defaults can be overridden by specifying new values
674on the command line.
675
676The action name must come at the beginning of the line, followed by any
677amount of whitespace and then the options. Options are given the same
678as they would be on the command line. They can be separated by any
679amount of whitespace, including newlines, as long there is whitespace at
680the beginning of each continued line. Anything following a hash mark (C<#>)
681is considered a comment, and is stripped before parsing. If more than
682one line begins with the same action name, those lines are merged into
683one set of options.
684
685Besides the regular actions, there are two special pseudo-actions: the
686key C<*> (asterisk) denotes any global options that should be applied
687to all actions, and the key 'Build_PL' specifies options to be applied
688when you invoke C<perl Build.PL>.
689
690 * verbose=1 # global options
691 diff flags=-u
692 install --install_base /home/ken
693 --install_path html=/home/ken/docs/html
694
695If you wish to locate your resource file in a different location, you
696can set the environment variable 'MODULEBUILDRC' to the complete
697absolute path of the file containing your options.
698
699
700=head1 INSTALL PATHS
701
a314697d 702[version 0.19]
703
bb4e9162 704When you invoke Module::Build's C<build> action, it needs to figure
705out where to install things. The nutshell version of how this works
706is that default installation locations are determined from
707F<Config.pm>, and they may be overridden by using the C<install_path>
708parameter. An C<install_base> parameter lets you specify an
709alternative installation root like F</home/foo>, and a C<destdir> lets
710you specify a temporary installation directory like F</tmp/install> in
711case you want to create bundled-up installable packages.
712
713Natively, Module::Build provides default installation locations for
714the following types of installable items:
715
716=over 4
717
718=item lib
719
720Usually pure-Perl module files ending in F<.pm>.
721
722=item arch
723
724"Architecture-dependent" module files, usually produced by compiling
725XS, Inline, or similar code.
726
727=item script
728
729Programs written in pure Perl. In order to improve reuse, try to make
730these as small as possible - put the code into modules whenever
731possible.
732
733=item bin
734
735"Architecture-dependent" executable programs, i.e. compiled C code or
736something. Pretty rare to see this in a perl distribution, but it
737happens.
738
739=item bindoc
740
741Documentation for the stuff in C<script> and C<bin>. Usually
742generated from the POD in those files. Under Unix, these are manual
743pages belonging to the 'man1' category.
744
745=item libdoc
746
747Documentation for the stuff in C<lib> and C<arch>. This is usually
748generated from the POD in F<.pm> files. Under Unix, these are manual
749pages belonging to the 'man3' category.
750
751=item binhtml
752
753This is the same as C<bindoc> above, but applies to html documents.
754
755=item libhtml
756
757This is the same as C<bindoc> above, but applies to html documents.
758
759=back
760
761Four other parameters let you control various aspects of how
762installation paths are determined:
763
764=over 4
765
766=item installdirs
767
768The default destinations for these installable things come from
769entries in your system's C<Config.pm>. You can select from three
770different sets of default locations by setting the C<installdirs>
771parameter as follows:
772
773 'installdirs' set to:
774 core site vendor
775
776 uses the following defaults from Config.pm:
777
778 lib => installprivlib installsitelib installvendorlib
779 arch => installarchlib installsitearch installvendorarch
780 script => installscript installsitebin installvendorbin
781 bin => installbin installsitebin installvendorbin
782 bindoc => installman1dir installsiteman1dir installvendorman1dir
783 libdoc => installman3dir installsiteman3dir installvendorman3dir
784 binhtml => installhtml1dir installsitehtml1dir installvendorhtml1dir [*]
785 libhtml => installhtml3dir installsitehtml3dir installvendorhtml3dir [*]
786
787 * Under some OS (eg. MSWin32) the destination for html documents is
788 determined by the C<Config.pm> entry C<installhtmldir>.
789
790The default value of C<installdirs> is "site". If you're creating
791vendor distributions of module packages, you may want to do something
792like this:
793
794 perl Build.PL --installdirs vendor
795
796or
797
798 ./Build install --installdirs vendor
799
800If you're installing an updated version of a module that was included
801with perl itself (i.e. a "core module"), then you may set
802C<installdirs> to "core" to overwrite the module in its present
803location.
804
805(Note that the 'script' line is different from MakeMaker -
806unfortunately there's no such thing as "installsitescript" or
807"installvendorscript" entry in C<Config.pm>, so we use the
808"installsitebin" and "installvendorbin" entries to at least get the
809general location right. In the future, if C<Config.pm> adds some more
810appropriate entries, we'll start using those.)
811
812=item install_path
813
814Once the defaults have been set, you can override them.
815
816On the command line, that would look like this:
817
818 perl Build.PL --install_path lib=/foo/lib --install_path arch=/foo/lib/arch
819
820or this:
821
822 ./Build install --install_path lib=/foo/lib --install_path arch=/foo/lib/arch
823
824=item install_base
825
826You can also set the whole bunch of installation paths by supplying the
827C<install_base> parameter to point to a directory on your system. For
828instance, if you set C<install_base> to "/home/ken" on a Linux
829system, you'll install as follows:
830
831 lib => /home/ken/lib/perl5
832 arch => /home/ken/lib/perl5/i386-linux
833 script => /home/ken/bin
834 bin => /home/ken/bin
835 bindoc => /home/ken/man/man1
836 libdoc => /home/ken/man/man3
837 binhtml => /home/ken/html
838 libhtml => /home/ken/html
839
840Note that this is I<different> from how MakeMaker's C<PREFIX>
841parameter works. See L</"Why PREFIX is not recommended"> for more
842details. C<install_base> just gives you a default layout under the
843directory you specify, which may have little to do with the
844C<installdirs=site> layout.
845
846The exact layout under the directory you specify may vary by system -
847we try to do the "sensible" thing on each platform.
848
849=item destdir
850
851If you want to install everything into a temporary directory first
852(for instance, if you want to create a directory tree that a package
853manager like C<rpm> or C<dpkg> could create a package from), you can
854use the C<destdir> parameter:
855
856 perl Build.PL --destdir /tmp/foo
857
858or
859
860 ./Build install --destdir /tmp/foo
861
862This will effectively install to "/tmp/foo/$sitelib",
863"/tmp/foo/$sitearch", and the like, except that it will use
864C<File::Spec> to make the pathnames work correctly on whatever
865platform you're installing on.
866
867=back
868
869=head2 About PREFIX Support
870
a314697d 871[version 0.28]
872
bb4e9162 873First, it is necessary to understand the original idea behind
874C<PREFIX>. If, for example, the default installation locations for
875your machine are F</usr/local/lib/perl5/5.8.5> for modules,
876F</usr/local/bin> for executables, F</usr/local/man/man1> and
877F</usr/local/man/man3> for manual pages, etc., then they all share the
878same "prefix" F</usr/local>. MakeMaker's C<PREFIX> mechanism was
879intended as a way to change an existing prefix that happened to occur
880in all those paths - essentially a C<< s{/usr/local}{/foo/bar} >> for
881each path.
882
883However, the real world is more complicated than that. The C<PREFIX>
884idea is fundamentally broken when your machine doesn't jibe with
885C<PREFIX>'s worldview.
886
887
888=over 4
889
890=item Why PREFIX is not recommended
891
892=over 4
893
894=item *
895
896Many systems have Perl configs that make little sense with PREFIX.
897For example, OS X, where core modules go in
898F</System/Library/Perl/...>, user-installed modules go in
899F</Library/Perl/...>, and man pages go in F</usr/share/man/...>. The
900PREFIX is thus set to F</>. Install L<Foo::Bar> on OS X with
901C<PREFIX=/home/spurkis> and you get things like
902F</home/spurkis/Library/Perl/5.8.1/Foo/Bar.pm> and
903F</home/spurkis/usr/share/man/man3/Foo::Bar.3pm>. Not too pretty.
904
905The problem is not limited to Unix-like platforms, either - on Windows
906builds (e.g. ActiveState perl 5.8.0), we have user-installed modules
907going in F<C:\Perl\site\lib>, user-installed executables going in
908F<C:\Perl\bin>, and PREFIX=F<C:\Perl\site>. The prefix just doesn't
909apply neatly to the executables.
910
911=item *
912
913The PREFIX logic is too complicated and hard to predict for the user.
914It's hard to document what exactly is going to happen. You can't give
915a user simple instructions like "run perl Makefile.PL PREFIX=~ and
916then set PERL5LIB=~/lib/perl5".
917
918=item *
919
920The results from PREFIX will change if your configuration of Perl
921changes (for example, if you upgrade Perl). This means your modules
922will end up in different places.
923
924=item *
925
926The results from PREFIX can change with different releases of
927MakeMaker. The logic of PREFIX is subtle and it has been altered in
928the past (mostly to limit damage in the many "edge cases" when its
929behavior was undesirable).
930
931=item *
932
933PREFIX imposes decisions made by the person who configured Perl onto
934the person installing a module. The person who configured Perl could
935have been you or it could have been some guy at Redhat.
936
937=back
938
939
940=item Alternatives to PREFIX
941
942Module::Build offers L</install_base> as a simple, predictable, and
943user-configurable alternative to ExtUtils::MakeMaker's C<PREFIX>.
944What's more, MakeMaker will soon accept C<INSTALL_BASE> -- we strongly
945urge you to make the switch.
946
947Here's a quick comparison of the two when installing modules to your
948home directory on a unix box:
949
950MakeMaker [*]:
951
952 % perl Makefile.PL PREFIX=/home/spurkis
953 PERL5LIB=/home/spurkis/lib/perl5/5.8.5:/home/spurkis/lib/perl5/site_perl/5.8.5
954 PATH=/home/spurkis/bin
955 MANPATH=/home/spurkis/man
956
957Module::Build:
958
959 % perl Build.PL install_base=/home/spurkis
960 PERL5LIB=/home/spurkis/lib/perl5
961 PATH=/home/spurkis/bin
962 MANPATH=/home/spurkis/man
963
964[*] Note that MakeMaker's behaviour cannot be guaranteed in even this
965common scenario, and differs among different versions of MakeMaker.
966
967In short, using C<install_base> is similar to the following MakeMaker usage:
968
969 perl Makefile.PL PREFIX=/home/spurkis LIB=/home/spurkis/lib/perl5
970
971See L</INSTALL PATHS> for details on other
972installation options available and how to configure them.
973
974=back
975
976
977=head1 MOTIVATIONS
978
979There are several reasons I wanted to start over, and not just fix
980what I didn't like about MakeMaker:
981
982=over 4
983
984=item *
985
986I don't like the core idea of MakeMaker, namely that C<make> should be
987involved in the build process. Here are my reasons:
988
989=over 4
990
991=item +
992
993When a person is installing a Perl module, what can you assume about
994their environment? Can you assume they have C<make>? No, but you can
995assume they have some version of Perl.
996
997=item +
998
999When a person is writing a Perl module for intended distribution, can
1000you assume that they know how to build a Makefile, so they can
1001customize their build process? No, but you can assume they know Perl,
1002and could customize that way.
1003
1004=back
1005
1006For years, these things have been a barrier to people getting the
1007build/install process to do what they want.
1008
1009=item *
1010
1011There are several architectural decisions in MakeMaker that make it
1012very difficult to customize its behavior. For instance, when using
1013MakeMaker you do C<use ExtUtils::MakeMaker>, but the object created in
1014C<WriteMakefile()> is actually blessed into a package name that's
1015created on the fly, so you can't simply subclass
1016C<ExtUtils::MakeMaker>. There is a workaround C<MY> package that lets
1017you override certain MakeMaker methods, but only certain explicitly
1018preselected (by MakeMaker) methods can be overridden. Also, the method
1019of customization is very crude: you have to modify a string containing
1020the Makefile text for the particular target. Since these strings
1021aren't documented, and I<can't> be documented (they take on different
1022values depending on the platform, version of perl, version of
1023MakeMaker, etc.), you have no guarantee that your modifications will
1024work on someone else's machine or after an upgrade of MakeMaker or
1025perl.
1026
1027=item *
1028
1029It is risky to make major changes to MakeMaker, since it does so many
1030things, is so important, and generally works. C<Module::Build> is an
1031entirely separate package so that I can work on it all I want, without
1032worrying about backward compatibility.
1033
1034=item *
1035
1036Finally, Perl is said to be a language for system administration.
1037Could it really be the case that Perl isn't up to the task of building
1038and installing software? Even if that software is a bunch of stupid
1039little C<.pm> files that just need to be copied from one place to
1040another? My sense was that we could design a system to accomplish
1041this in a flexible, extensible, and friendly manner. Or die trying.
1042
1043=back
1044
1045
1046=head1 TO DO
1047
1048The current method of relying on time stamps to determine whether a
1049derived file is out of date isn't likely to scale well, since it
1050requires tracing all dependencies backward, it runs into problems on
1051NFS, and it's just generally flimsy. It would be better to use an MD5
1052signature or the like, if available. See C<cons> for an example.
1053
1054 - append to perllocal.pod
1055 - add a 'plugin' functionality
1056
1057
1058=head1 AUTHOR
1059
1060Ken Williams <kwilliams@cpan.org>
1061
1062Development questions, bug reports, and patches should be sent to the
1063Module-Build mailing list at <module-build-general@lists.sourceforge.net>.
1064
1065Bug reports are also welcome at
1066<http://rt.cpan.org/NoAuth/Bugs.html?Dist=Module-Build>.
1067
1068An anonymous CVS repository containing the latest development version
1069is available; see <http://sourceforge.net/cvs/?group_id=45731> for the
1070details of how to access it.
1071
1072
1073=head1 COPYRIGHT
1074
1075Copyright (c) 2001-2005 Ken Williams. All rights reserved.
1076
1077This library is free software; you can redistribute it and/or
1078modify it under the same terms as Perl itself.
1079
1080
1081=head1 SEE ALSO
1082
1083perl(1), Module::Build::Cookbook(3), Module::Build::Authoring(3),
1084ExtUtils::MakeMaker(3), YAML(3)
1085
1086F<META.yml> Specification:
1087L<http://module-build.sourceforge.net/META-spec-v1.2.html>
1088
1089L<http://www.dsmit.com/cons/>
1090
1091=cut