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