source: general/prog/perl-modules/perl-module-build.xml@ fe07b42

perl-modules
Last change on this file since fe07b42 was fe07b42, checked in by Pierre Labastie <pieere@…>, 6 years ago

Give explicit build instructions for perl modules, instead of a link:

  • Add two files in the xincludes directory
  • Use <xi:xinclude> with href pointing to one of those files

Note that the files which are "xincluded" must be well formed XML
files. As such, they must have a unique top element. I choose to
have a <para> top element, which means <screen> elements are inside
it. This does not seem to change the rendered book, though.

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/branches/perl-modules@20476 af4574ff-66df-0310-9fd7-8a98e5e911e0

  • Property mode set to 100644
File size: 1.7 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../../../general.ent">
5 %general-entities;
6
7
8 <!ENTITY my-download-http "&perl_authors;/id/L/LE/LEONT/Module-Build-&Module-Build-version;.tar.gz">
9 <!ENTITY my-md5sum "b74c2f6e84b60aad3a3defd30b6f0f4d">
10
11]>
12
13 <!-- Begin Module::Build -->
14 <sect2 id="new-perl-module-build" xreflabel="Module-Build-&Module-Build-version;">
15
16 <title>Module::Build-&Module-Build-version;</title>
17
18 <indexterm zone="new-perl-module-build">
19 <primary sortas="a-Module-Build">Module::Build</primary>
20 </indexterm>
21
22
23 <sect3 role="package">
24 <title>Introduction to Module::Build</title>
25
26 <para>
27 Module::Build allows perl modules to be built without a
28 <command>make</command> command being present.
29 </para>
30
31 &lfs83_checked;
32
33 <bridgehead renderas="sect4">Package Information</bridgehead>
34 <itemizedlist spacing="compact">
35 <listitem>
36 <para>
37 Download (HTTP): <ulink url="&my-download-http;"/>
38 </para>
39 </listitem>
40 <listitem>
41 <para>
42 Download MD5 sum: &my-md5sum;
43 </para>
44 </listitem>
45 </itemizedlist>
46
47 </sect3>
48
49 <sect3 role="installation">
50 <title>Installation of Module::Build</title>
51
52 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
53 href="../../../xincludes/perl-standard-install.xml"/>
54
55 <para>
56 Note that this module can also be built using
57 <filename>Build.PL</filename>
58 </para>
59
60 </sect3>
61
62 </sect2>
Note: See TracBrowser for help on using the repository browser.