source: general/genlib/pcre.xml@ a0f03b0

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 6.0 6.1 6.2 6.2.0 6.2.0-rc1 6.2.0-rc2 6.3 6.3-rc1 6.3-rc2 6.3-rc3 7.10 7.4 7.5 7.6 7.6-blfs 7.6-systemd 7.7 7.8 7.9 8.0 8.1 8.2 8.3 8.4 9.0 9.1 basic bdubbs/svn elogind gnome kde5-13430 kde5-14269 kde5-14686 kea ken/TL2024 ken/inkscape-core-mods ken/tuningfonts krejzi/svn lazarus lxqt nosym perl-modules plabs/newcss plabs/python-mods python3.11 qt5new rahul/power-profiles-daemon renodr/vulkan-addition systemd-11177 systemd-13485 trunk upgradedb xry111/intltool xry111/llvm18 xry111/soup3 xry111/test-20220226 xry111/xf86-video-removal
Last change on this file since a0f03b0 was a0f03b0, checked in by Archaic <archaic@…>, 20 years ago

Inserting sect1info

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@2591 af4574ff-66df-0310-9fd7-8a98e5e911e0

  • Property mode set to 100644
File size: 5.0 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.3//EN"
3 "http://www.oasis-open.org/docbook/xml/4.3/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
7<!ENTITY pcre-download-http "http://www.newlisp.org/download/Tools/pcre-&pcre-version;.tar.gz">
8<!ENTITY pcre-download-ftp "ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-&pcre-version;.tar.bz2">
9<!ENTITY pcre-size "344 KB">
10<!ENTITY pcre-buildsize "3.5 MB">
11<!ENTITY pcre-time "0.08 SBU">
12
13]>
14
15<sect1 id="pcre" xreflabel="PCRE-&pcre-version;">
16<sect1info>
17<othername>$LastChangedBy: $</othername>
18<date>$Date: $</date>
19</sect1info>
20<?dbhtml filename="pcre.html"?>
21<title>PCRE-&pcre-version;</title>
22
23<sect2>
24<title>Introduction to <application><acronym>PCRE</acronym></application></title>
25
26<para>The <application><acronym>PCRE</acronym></application> package contains
27<application>Perl</application> Compatible Regular Expression
28libraries. These are useful for implementing regular expression pattern
29matching using the same syntax and semantics as
30<application>Perl</application> 5.</para>
31
32<sect3><title>Package information</title>
33<itemizedlist spacing='compact'>
34<listitem><para>Download (HTTP): <ulink
35url="&pcre-download-http;"/></para></listitem>
36<listitem><para>Download (FTP): <ulink
37url="&pcre-download-ftp;"/></para></listitem>
38<listitem><para>Download size: &pcre-size;</para></listitem>
39<listitem><para>Estimated Disk space required:
40&pcre-buildsize;</para></listitem>
41<listitem><para>Estimated build time:
42&pcre-time;</para></listitem></itemizedlist>
43</sect3>
44</sect2>
45
46<sect2>
47<title>Installation of <application><acronym>PCRE</acronym></application></title>
48
49<para>Install <application><acronym>PCRE</acronym></application> by running
50the following commands:</para>
51
52<screen><userinput><command>./configure --prefix=/usr --enable-utf8 &amp;&amp;
53make &amp;&amp;
54make install</command></userinput></screen>
55
56<para>If you reinstall <application>grep</application> after installing
57<application>pcre</application>, <application>grep</application> will get
58linked against <application>pcre</application> and may cause problems if
59<filename>/usr</filename> is a separate mount point. To avoid this, either
60pass the option <emphasis>--disable-perl-regexp</emphasis> when executing
61<command>./configure</command> for <application>grep</application> or move
62<filename>libpcre</filename> to <filename>/lib</filename> as follows.</para>
63
64<screen><userinput><command>mv /usr/lib/libpcre.so.* /lib/ &amp;&amp;
65ln -sf ../../lib/libpcre.so.0 /usr/lib/libpcre.so</command></userinput></screen>
66</sect2>
67
68<sect2>
69<title>Command explanations</title>
70
71<para><parameter>--enable-utf8</parameter>: This switch includes the code for
72handling <acronym>UTF</acronym>-8 character strings in the library.</para>
73
74</sect2>
75
76<sect2>
77<title>Contents</title>
78
79<para>The <application><acronym>PCRE</acronym></application> package contains
80the <filename class='libraryfile'>libpcre</filename> libraries,
81<command>pcregrep</command>, <command>pcretest</command> and
82<command>pcre-config</command>.</para>
83
84</sect2>
85
86<sect2><title>Description</title>
87
88<sect3><title>pcregrep</title>
89<para><command>pcregrep</command> is a <command>grep</command> that understands
90<application>Perl</application> compatible regular expressions.</para></sect3>
91
92<sect3><title>pcretest</title>
93<para><command>pcretest</command> can test your
94<application>Perl</application> compatible regular expression.</para></sect3>
95
96<sect3><title>pcre-config</title>
97<para><command>pcre-config</command> is used during the compile process of
98programs linking to this library.</para></sect3>
99
100</sect2>
101
102</sect1>
103
Note: See TracBrowser for help on using the repository browser.