source: general/sysutils/unzip.xml@ 8e855fc4

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 8e855fc4 was 8e855fc4, checked in by Randy McMurchy <randy@…>, 20 years ago

Changed install command to cp -d in UnZip instructions

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@2728 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.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 unzip-download-http "http://www.mirror.ac.uk/sites/ftp.info-zip.org/pub/infozip/src/unzip551.tar.gz">
8<!ENTITY unzip-download-ftp "ftp://ftp.info-zip.org/pub/infozip/src/unzip551.tar.gz">
9<!ENTITY unzip-size "1.1 MB">
10<!ENTITY unzip-buildsize "6.5 MB">
11<!ENTITY unzip-time "0.11 SBU">
12
13]>
14
15<sect1 id="unzip" xreflabel="UnZip-&unzip-version;">
16<sect1info>
17<othername>$LastChangedBy$</othername>
18<date>$Date$</date>
19</sect1info>
20<?dbhtml filename="unzip.html"?>
21<title>UnZip-&unzip-version;</title>
22
23<sect2>
24<title>Introduction to <application>UnZip</application></title>
25
26<para>The <application>UnZip</application> package contains
27<filename>ZIP</filename> extraction utilities. These are useful for extracting
28files from <filename>ZIP</filename> archives. <filename>ZIP</filename> archives
29are created with <application>PKZIP</application> or
30<application>Info-ZIP</application> utilities primarily in a
31<acronym>DOS</acronym> environment.
32</para>
33
34<sect3><title>Package information</title>
35<itemizedlist spacing='compact'>
36<listitem><para>Download (HTTP): <ulink
37url="&unzip-download-http;"/></para></listitem>
38<listitem><para>Download (FTP): <ulink
39url="&unzip-download-ftp;"/></para></listitem>
40<listitem><para>Download size: &unzip-size;</para></listitem>
41<listitem><para>Estimated Disk space required:
42&unzip-buildsize;</para></listitem>
43<listitem><para>Estimated build time:
44&unzip-time;</para></listitem></itemizedlist>
45</sect3>
46
47<sect3><title>Additional downloads</title>
48<itemizedlist spacing='compact'>
49<listitem><para>Required Patch: <ulink
50url="&patch-root;/unzip-&unzip-version;-fix_Makefile-1.patch"/></para>
51</listitem>
52<listitem><para>Required Patch: <ulink
53url="&patch-root;/unzip-&unzip-version;-fix_libz-1.patch"/></para>
54</listitem>
55<listitem><para>Recommended Patch: <ulink
56url="&patch-root;/unzip-&unzip-version;-dont_make_noise-1.patch"/></para>
57</listitem></itemizedlist>
58</sect3>
59
60</sect2>
61
62<sect2>
63<title>Installation of <application>UnZip</application></title>
64
65<para>Install <application>UnZip</application> by running the following
66commands:</para>
67
68<screen><userinput><command>patch -Np1 -i ../unzip-&unzip-version;-fix_Makefile-1.patch &amp;&amp;
69patch -Np1 -i ../unzip-&unzip-version;-fix_libz-1.patch &amp;&amp;
70patch -Np1 -i ../unzip-&unzip-version;-dont_make_noise-1.patch &amp;&amp;
71cp unix/Makefile . &amp;&amp;
72make prefix=/usr LOCAL_UNZIP=-DUSE_UNSHRINK linux &amp;&amp;
73make prefix=/usr LOCAL_UNZIP=-DUSE_UNSHRINK linux_shlibz &amp;&amp;
74make prefix=/usr LOCAL_UNZIP=-DUSE_UNSHRINK install &amp;&amp;
75cp -d libunzip.so* /usr/lib</command></userinput></screen>
76
77</sect2>
78
79<sect2>
80<title>Command explanations</title>
81
82<para><command>make prefix=/usr LOCAL_UNZIP=-DUSE_UNSHRINK linux</command>:
83This command overrides the <varname>prefix</varname> variable that is
84set to <filename class="directory">/usr/local</filename> in the
85<filename>Makefile</filename>, sets the <envar>LOCAL_UNZIP</envar>
86environment variable to instruct <application>UnZip</application> to use
87the shrinking algorithm based on the <acronym>LZW</acronym> compression
88algorithm, and builds the executables for a Linux system.
89The alternatives to 'linux' can be seen with a
90<command>make list</command> command.</para>
91
92<para><command>make ... linux_shlibz</command>: Build shared
93<filename>libunzip</filename> and link <application>UnZip</application> against
94it and <application>zlib</application>.</para>
95
96</sect2>
97
98<sect2>
99<title>Contents</title>
100
101<para>The <application>UnZip</application> package contains
102<command>unzip</command>, <command>funzip</command>, <command>unzipfsx</command>,
103<command>zipgrep</command>, <command>zipinfo</command> and the
104<filename class="libraryfile">libunzip</filename> library.</para>
105
106</sect2>
107
108<sect2><title>Description</title>
109
110<sect3><title>unzip</title>
111<para><command>unzip</command> lists, tests or extracts files from a
112<filename>ZIP</filename> archive.</para></sect3>
113
114<sect3><title>funzip</title>
115<para><command>funzip</command> allows the output of <command>unzip</command>
116commands to be redirected.</para></sect3>
117
118<sect3><title>unzipfsx</title>
119<para><command>unzipfsx</command> is the self-extracting stub that can be
120prepended to a <filename>ZIP</filename> archive. Files in this format allow
121the recipient to decompress the archive without installing
122<application>UnZip</application>.</para></sect3>
123
124<sect3><title>zipgrep</title>
125<para><command>zipgrep</command> is a grep for <filename>ZIP</filename>
126archives.</para></sect3>
127
128<sect3><title>zipinfo</title>
129<para><command>zipinfo</command> produces technical information about the files
130in a <filename>ZIP</filename> archive, including file access permissions,
131encryption status, type of compression, etc.</para></sect3>
132
133</sect2>
134
135</sect1>
Note: See TracBrowser for help on using the repository browser.