File: arbitrary.txt

package info (click to toggle)
libextutils-modulemaker-perl 0.63-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 744 kB
  • sloc: perl: 7,331; makefile: 11
file content (21 lines) | stat: -rw-r--r-- 651 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
=pod

This is an illustration of arbitrary text to be inserted into each of the
lib/*.pm files created by a particular run of ExtUtils::ModuleMaker.

By default, this code is placed after any constructor and before the main POD
block.  If you want to put it elsewhere, you should subclass
ExtUtils::ModuleMaker::StandardText::compose_pm_file().

You may include both POD and code, as illustrated here.

To include this code in the lib/*.pm files in your distribution, pass a 
key-value pair like the following to ExtUtils::ModuleMaker::new():

    INCLUDE_FILE_IN_PM => qq{/path/to/some/arbitrary.txt};

=cut

sub declare {}
sub init {}
sub marine {}