grep.xml 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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. <sect1 id="ch-tools-grep" role="wrap">
  8. <?dbhtml filename="grep.html"?>
  9. <sect1info condition="script">
  10. <productname>grep</productname>
  11. <productnumber>&grep-version;</productnumber>
  12. <address>&grep-url;</address>
  13. </sect1info>
  14. <title>Grep-&grep-version;</title>
  15. <indexterm zone="ch-tools-grep">
  16. <primary sortas="a-Grep">Grep</primary>
  17. <secondary>tools</secondary>
  18. </indexterm>
  19. <sect2 role="package">
  20. <title/>
  21. <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
  22. href="../chapter06/grep.xml"
  23. xpointer="xpointer(/sect1/sect2[1]/para[1])"/>
  24. <segmentedlist>
  25. <segtitle>&buildtime;</segtitle>
  26. <segtitle>&diskspace;</segtitle>
  27. <seglistitem>
  28. <seg>&grep-ch5-sbu;</seg>
  29. <seg>&grep-ch5-du;</seg>
  30. </seglistitem>
  31. </segmentedlist>
  32. </sect2>
  33. <sect2 role="installation">
  34. <title>Installation of Grep</title>
  35. <para>Prepare Grep for compilation:</para>
  36. <screen><userinput remap="configure">./configure --prefix=/tools \
  37. --disable-perl-regexp</userinput></screen>
  38. <variablelist>
  39. <title>The meaning of the configure switches:</title>
  40. <varlistentry>
  41. <term><parameter>--disable-perl-regexp</parameter></term>
  42. <listitem>
  43. <para>This ensures that the <command>grep</command> program does
  44. not get linked against a Perl Compatible Regular Expression (PCRE)
  45. library that may be present on the host but will not be available
  46. once we enter the <command>chroot</command> environment.</para>
  47. </listitem>
  48. </varlistentry>
  49. </variablelist>
  50. <para>Compile the package:</para>
  51. <screen><userinput remap="make">make</userinput></screen>
  52. <para>Compilation is now complete. As discussed earlier, running the test
  53. suite is not mandatory for the temporary tools here in this chapter. To run
  54. the Grep test suite anyway, issue the following command:</para>
  55. <screen><userinput remap="test">make check</userinput></screen>
  56. <para>Install the package:</para>
  57. <screen><userinput remap="install">make install</userinput></screen>
  58. </sect2>
  59. <sect2 role="content">
  60. <title/>
  61. <para>Details on this package are located in
  62. <xref linkend="contents-grep" role="."/></para>
  63. </sect2>
  64. </sect1>