1Module::Install::CatalyUsste(r3)Contributed Perl DocumenMtoadtuiloen::Install::Catalyst(3)
2
3
4
6 Module::Install::Catalyst - Module::Install extension for Catalyst
7
9 use inc::Module::Install;
10
11 name 'MyApp';
12 all_from 'lib/MyApp.pm';
13
14 requires 'Catalyst::Runtime' => '5.7014';
15
16 catalyst_ignore('.*temp');
17 catalyst_ignore('.*tmp');
18 catalyst;
19 WriteAll;
20
22 Module::Install extension for Catalyst.
23
25 catalyst
26 Calls catalyst_files. Should be the last catalyst* command called in
27 "Makefile.PL".
28
29 catalyst_files
30 Collect a list of all files a Catalyst application consists of and copy
31 it inside the blib/lib/ directory. Files and directories that match the
32 modules ignore list are excluded (see catalyst_ignore and
33 catalyst_ignore_all).
34
35 catalyst_ignore_all(\@ignore)
36 This function replaces the built-in default ignore list with the given
37 list.
38
39 catalyst_ignore(@ignore)
40 Add a regexp to the list of ignored patterns. Can be called multiple
41 times.
42
44 Catalyst Contributors, see Catalyst.pm
45
47 This library is free software. You can redistribute it and/or modify it
48 under the same terms as Perl itself.
49
50
51
52perl v5.30.0 2019-07-26 Module::Install::Catalyst(3)