source: general/genutils/sharutils.xml@ 88a39b92

10.0 10.1 11.0 11.1 11.2 11.3 12.0 12.1 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 88a39b92 was 88a39b92, checked in by Bruce Dubbs <bdubbs@…>, 12 years ago

Fix an obsolete file in sharutils

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

  • Property mode set to 100644
File size: 4.9 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 <!ENTITY sharutils-download-http "http://ftp.gnu.org/gnu/sharutils/sharutils-&sharutils-version;.tar.bz2">
8 <!ENTITY sharutils-download-ftp "ftp://ftp.gnu.org/gnu/sharutils/sharutils-&sharutils-version;.tar.bz2">
9 <!ENTITY sharutils-md5sum "52dd02b6f5e0a148ba871234ae29bba2">
10 <!ENTITY sharutils-size "984 KB">
11 <!ENTITY sharutils-buildsize "10 MB">
12 <!ENTITY sharutils-time "0.3 SBU">
13]>
14
15<sect1 id="sharutils" xreflabel="sharutils-&sharutils-version;">
16 <?dbhtml filename="sharutils.html"?>
17
18 <sect1info>
19 <othername>$LastChangedBy$</othername>
20 <date>$Date$</date>
21 </sect1info>
22
23 <title>sharutils-&sharutils-version;</title>
24
25 <indexterm zone="sharutils">
26 <primary sortas="a-sharutils">sharutils</primary>
27 </indexterm>
28
29 <sect2 role="package">
30 <title>Introduction to sharutils</title>
31
32 <para>The <application>sharutils</application> package contains
33 utilities that can create 'shell' archives.</para>
34
35 &lfs72_checked;
36
37 <bridgehead renderas="sect3">Package Information</bridgehead>
38 <itemizedlist spacing="compact">
39 <listitem>
40 <para>Download (HTTP): <ulink url="&sharutils-download-http;"/></para>
41 </listitem>
42 <listitem>
43 <para>Download (FTP): <ulink url="&sharutils-download-ftp;"/></para>
44 </listitem>
45 <listitem>
46 <para>Download MD5 sum: &sharutils-md5sum;</para>
47 </listitem>
48 <listitem>
49 <para>Download size: &sharutils-size;</para>
50 </listitem>
51 <listitem>
52 <para>Estimated disk space required: &sharutils-buildsize;</para>
53 </listitem>
54 <listitem>
55 <para>Estimated build time: &sharutils-time;</para>
56 </listitem>
57 </itemizedlist>
58
59 <para condition="html" role="usernotes">User Notes:
60 <ulink url="&blfs-wiki;/sharutils"/></para>
61
62 </sect2>
63
64 <sect2 role="installation">
65 <title>Installation of sharutils</title>
66
67 <para>First fix an obsolete definition in the included gnulib:</para>
68
69<screen><userinput>sed -i -e '/gets is a/d' lib/stdio.in.h</userinput></screen>
70
71 <para>Now, install <application>sharutils</application> by running the following commands:</para>
72
73<screen><userinput>./configure --prefix=/usr &amp;&amp;
74make</userinput></screen>
75
76 <para>To test <application>sharutils</application>, run
77 <userinput>make check</userinput>.</para>
78
79 <para>As the <systemitem class="username">root</systemitem> user:</para>
80
81<screen role="root"><userinput>make install</userinput></screen>
82
83 </sect2>
84
85 <!--
86 <sect2 role="commands">
87 <title>Command Explanations</title>
88
89 </sect2>-->
90
91 <sect2 role="content">
92 <title>Contents</title>
93
94 <segmentedlist>
95 <segtitle>Installed Programs</segtitle>
96 <segtitle>Installed Libraries</segtitle>
97 <segtitle>Installed Directories</segtitle>
98
99 <seglistitem>
100 <seg>shar, unshar, uudecode, and uuencode</seg>
101 <seg>None</seg>
102 <seg>None</seg>
103 </seglistitem>
104 </segmentedlist>
105
106 <variablelist>
107 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
108 <?dbfo list-presentation="list"?>
109 <?dbhtml list-presentation="table"?>
110
111 <varlistentry id="shar">
112 <term><command>shar</command></term>
113 <listitem>
114 <para>creates "shell archives" (or shar files) which are in
115 text format and can be mailed.</para>
116 <indexterm zone="sharutils shar">
117 <primary sortas="b-shar">shar</primary>
118 </indexterm>
119 </listitem>
120 </varlistentry>
121
122 <varlistentry id="unshar">
123 <term><command>unshar</command></term>
124 <listitem>
125 <para>unpacks a shar file.</para>
126 <indexterm zone="sharutils unshar">
127 <primary sortas="b-unshar">unshar</primary>
128 </indexterm>
129 </listitem>
130 </varlistentry>
131
132 <varlistentry id="uudecode">
133 <term><command>uudecode</command></term>
134 <listitem>
135 <para>reads a file (or by default the standard input) and writes an encoded
136 version to the standard output. The encoding uses only printing
137 ASCII characters.</para>
138 <indexterm zone="sharutils uudecode">
139 <primary sortas="b-uudecode">uudecode</primary>
140 </indexterm>
141 </listitem>
142 </varlistentry>
143
144 <varlistentry id="uuencode">
145 <term><command>uuencode</command></term>
146 <listitem>
147 <para>reads a file (or by default the standard input) and decodes
148 the uuencoded version to the standard output.</para>
149 <indexterm zone="sharutils uuencode">
150 <primary sortas="b-uuencode">uuencode</primary>
151 </indexterm>
152 </listitem>
153 </varlistentry>
154
155 </variablelist>
156
157 </sect2>
158
159</sect1>
160
Note: See TracBrowser for help on using the repository browser.