File: README

package info (click to toggle)
texinfo 7.2-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 113,148 kB
  • sloc: perl: 1,281,149; ansic: 135,801; sh: 12,218; xml: 9,069; makefile: 4,016; javascript: 1,923; awk: 1,889; sed: 78; pascal: 65
file content (59 lines) | stat: -rw-r--r-- 2,053 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
Pod-Simple-Texinfo version 0.01
===============================

Pod::Simple based Pod formatter to render Texinfo.

INSTALLATION

To install from version control sources, the pod2texi script needs to be
created first.  This is not needed from code archives.

   cp pod2texi.pl pod2texi

To install this module type the following:

   perl Makefile.PL
   make
   make test
   make install

DEPENDENCIES

This module requires these other modules and libraries:

Pod::Simple::PullParser, Pod::Simple::XHTML, Texinfo::Parser.

DISTRIBUTION SETUP

This module is usually distributed as part of GNU Texinfo, using Autoconf
and Automake for the build system.  Alternatively, it is possible to
distribute the module using Makefile.PL as described here.

The pod2texi script is usually set up using the Autoconf and Automake
built environment from pod2texi.pl.  When using Makefile.PL from version
control sources, the pod2texi.pl file should be copied instead, as explained
above.  In that case, the Texinfo::Parser modules will not be searched for as
in the GNU Texinfo usual case, only in the perl paths, as in other perl
modules.

The test_scripts/*.sh test scripts are setup to work with the Autoconf and
Automake built environment, they are not distributed when using Makefile.PL.
To be able to run them manually from version control sources when using
Makefile.PL, you can do something like the following, with a sed command
that understands -i to modify the scripts such that they do not need the
defs file present in the Autoconf and Automake built environment:
for script in test_scripts/*.sh; do
  sed -i -e 's;^\. \$testdir/\.\./tp/defs.*;#&\nPERL=perl;' $script;
done

COPYRIGHT AND LICENCE

Copyright (C) 2011-2024 Free Software Foundation, Inc.

This library is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License,
or (at your option) any later version.

_url_escape is general_url_escape from Pod::Simple::HTML.