Acme-Sort-Sleep

 view release on metacpan or  search on metacpan

MANIFEST  view on Meta::CPAN

58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
local/lib/perl5/IO/Async/Timer/Countdown.pm
local/lib/perl5/IO/Async/Timer/Periodic.pm
local/lib/perl5/Module/Build.pm
local/lib/perl5/Module/Build/API.pod
local/lib/perl5/Module/Build/Authoring.pod
local/lib/perl5/Module/Build/Base.pm
local/lib/perl5/Module/Build/Bundling.pod
local/lib/perl5/Module/Build/Compat.pm
local/lib/perl5/Module/Build/Config.pm
local/lib/perl5/Module/Build/ConfigData.pm
local/lib/perl5/Module/Build/Cookbook.pm
local/lib/perl5/Module/Build/Dumper.pm
local/lib/perl5/Module/Build/Notes.pm
local/lib/perl5/Module/Build/PPMMaker.pm
local/lib/perl5/Module/Build/Platform/Default.pm
local/lib/perl5/Module/Build/Platform/MacOS.pm
local/lib/perl5/Module/Build/Platform/Unix.pm
local/lib/perl5/Module/Build/Platform/VMS.pm
local/lib/perl5/Module/Build/Platform/VOS.pm
local/lib/perl5/Module/Build/Platform/Windows.pm
local/lib/perl5/Module/Build/Platform/aix.pm

local/cache/modules/02packages.details.txt  view on Meta::CPAN

41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
IO::Async::Stream                  0.70  P/PE/PEVANS/IO-Async-0.70.tar.gz
IO::Async::Test                    0.70  P/PE/PEVANS/IO-Async-0.70.tar.gz
IO::Async::Timer                   0.70  P/PE/PEVANS/IO-Async-0.70.tar.gz
IO::Async::Timer::Absolute         0.70  P/PE/PEVANS/IO-Async-0.70.tar.gz
IO::Async::Timer::Countdown        0.70  P/PE/PEVANS/IO-Async-0.70.tar.gz
IO::Async::Timer::Periodic         0.70  P/PE/PEVANS/IO-Async-0.70.tar.gz
Module::Build                    0.4220  L/LE/LEONT/Module-Build-0.4220.tar.gz
Module::Build::Base              0.4220  L/LE/LEONT/Module-Build-0.4220.tar.gz
Module::Build::Compat            0.4220  L/LE/LEONT/Module-Build-0.4220.tar.gz
Module::Build::Config            0.4220  L/LE/LEONT/Module-Build-0.4220.tar.gz
Module::Build::Cookbook          0.4220  L/LE/LEONT/Module-Build-0.4220.tar.gz
Module::Build::Dumper            0.4220  L/LE/LEONT/Module-Build-0.4220.tar.gz
Module::Build::Notes             0.4220  L/LE/LEONT/Module-Build-0.4220.tar.gz
Module::Build::Platform::aix     0.4220  L/LE/LEONT/Module-Build-0.4220.tar.gz
Module::Build::Platform::cygwin  0.4220  L/LE/LEONT/Module-Build-0.4220.tar.gz
Module::Build::Platform::darwin  0.4220  L/LE/LEONT/Module-Build-0.4220.tar.gz
Module::Build::Platform::Default 0.4220  L/LE/LEONT/Module-Build-0.4220.tar.gz
Module::Build::Platform::MacOS   0.4220  L/LE/LEONT/Module-Build-0.4220.tar.gz
Module::Build::Platform::os2     0.4220  L/LE/LEONT/Module-Build-0.4220.tar.gz
Module::Build::Platform::Unix    0.4220  L/LE/LEONT/Module-Build-0.4220.tar.gz
Module::Build::Platform::VMS     0.4220  L/LE/LEONT/Module-Build-0.4220.tar.gz

local/lib/perl5/Module/Build.pm  view on Meta::CPAN

153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
This document describes the structure and organization of
C<Module::Build>, and the relevant concepts needed by authors who are
writing F<Build.PL> scripts for a distribution or controlling
C<Module::Build> processes programmatically.
 
=item API Reference (L<Module::Build::API>)
 
This is a reference to the C<Module::Build> API.
 
=item Cookbook (L<Module::Build::Cookbook>)
 
This document demonstrates how to accomplish many common tasks.  It
covers general command line usage and authoring of F<Build.PL>
scripts.  Includes working examples.
 
=back
 
 
=head1 ACTIONS

local/lib/perl5/Module/Build.pm  view on Meta::CPAN

986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
Module::Build's --prefix logic is equivalent to the PREFIX logic found
in C<ExtUtils::MakeMaker> 6.30.
 
The maintainers of C<MakeMaker> do understand the troubles with the
PREFIX mechanism, and added INSTALL_BASE support in version 6.31 of
C<MakeMaker>, which was released in 2006.
 
If you don't need to retain compatibility with old versions (pre-6.31) of C<ExtUtils::MakeMaker> or
are starting a fresh Perl installation we recommend you use
C<install_base> instead (and C<INSTALL_BASE> in C<ExtUtils::MakeMaker>).
See L<Module::Build::Cookbook/Installing in the same location as
ExtUtils::MakeMaker> for further information.
 
 
=back
 
 
=head1 MOTIVATIONS
 
There are several reasons I wanted to start over, and not just fix
what I didn't like about C<MakeMaker>:

local/lib/perl5/Module/Build.pm  view on Meta::CPAN

1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
=head1 COPYRIGHT
 
Copyright (c) 2001-2006 Ken Williams.  All rights reserved.
 
This library is free software; you can redistribute it and/or
modify it under the same terms as Perl itself.
 
 
=head1 SEE ALSO
 
perl(1), L<Module::Build::Cookbook>, L<Module::Build::Authoring>,
L<Module::Build::API>, L<ExtUtils::MakeMaker>
 
F<META.yml> Specification:
L<CPAN::Meta::Spec>
 
 
 
=cut

local/lib/perl5/Module/Build/API.pod  view on Meta::CPAN

1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
[version 0.26]
 
Adds a new type of entry to the build process.  Accepts a single
string specifying its type-name.  There must also be a method defined
to process things of that type, e.g. if you add a build element called
C<'foo'>, then you must also define a method called
C<process_foo_files()>.
 
See also
L<Module::Build::Cookbook/"Adding new file types to the build process">.
 
=item add_to_cleanup(@files)
 
[version 0.03]
 
You may call C<< $self->add_to_cleanup(@patterns) >> to tell
C<Module::Build> that certain files should be removed when the user
performs the C<Build clean> action.  The arguments to the method are
patterns suitable for passing to Perl's C<glob()> function, specified
in either Unix format or the current machine's native format.  It's

local/lib/perl5/Module/Build/API.pod  view on Meta::CPAN

2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
Copyright (c) 2001-2006 Ken Williams.  All rights reserved.
 
This library is free software; you can redistribute it and/or
modify it under the same terms as Perl itself.
 
 
=head1 SEE ALSO
 
perl(1), L<Module::Build>(3), L<Module::Build::Authoring>(3),
L<Module::Build::Cookbook>(3), L<ExtUtils::MakeMaker>(3)
 
F<META.yml> Specification:
L<CPAN::Meta::Spec>
 
=cut

local/lib/perl5/Module/Build/Authoring.pod  view on Meta::CPAN

307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
Bug reports are also welcome at
 
The latest development version is available from the Git
 
 
=head1 SEE ALSO
 
perl(1), L<Module::Build>(3), L<Module::Build::API>(3),
L<Module::Build::Cookbook>(3), L<ExtUtils::MakeMaker>(3), L<YAML>(3)
 
F<META.yml> Specification:
L<CPAN::Meta::Spec>
 
 
 
=cut

local/lib/perl5/Module/Build/Bundling.pod  view on Meta::CPAN

133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
Development questions, bug reports, and patches should be sent to the
Module-Build mailing list at <module-build@perl.org>.
 
Bug reports are also welcome at
 
=head1 SEE ALSO
 
perl(1), L<inc::latest>, L<Module::Build>(3), L<Module::Build::API>(3),
L<Module::Build::Cookbook>(3),
 
=cut
 
# vim: tw=75

local/lib/perl5/Module/Build/Cookbook.pm  view on Meta::CPAN

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
use strict;
our $VERSION = '0.4220';
 
 
=head1 NAME
 
Module::Build::Cookbook - Examples of Module::Build Usage
 
=head1 DESCRIPTION
 
C<Module::Build> isn't conceptually very complicated, but examples are
always helpful.  The following recipes should help developers and/or
installers put together the pieces from the other parts of the
documentation.
 
 
=head1 BASIC RECIPES



( run in 0.453 second using v1.01-cache-2.11-cpan-d6f9594c0a5 )