Changeset 1ae85332


Ignore:
Timestamp:
07/09/2004 11:24:03 AM (20 years ago)
Author:
Igor Živković <igor@…>
Branches:
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
Children:
4fc3871
Parents:
682f8ef8
Message:

Added shrink compression method to UnZip.

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

Files:
3 edited

Legend:

Unmodified
Added
Removed
  • general.ent

    r682f8ef8 r1ae85332  
    1 <!ENTITY day          "08">
     1<!ENTITY day          "09">
    22<!ENTITY month        "07">
    33<!ENTITY year         "2004">
  • general/sysutils/unzip.xml

    r682f8ef8 r1ae85332  
    5858<title>Installation of <application>UnZip</application></title>
    5959
    60 <para>By default, <application>UnZip</application> does not support shrink
    61 decompression. To enable it or to obtain more information, check out the
    62 <application>UnZip</application> <acronym>FAQ</acronym> at
    63 <ulink url="http://www.info-zip.org/pub/infozip/FAQ.html#unshrink"/>.</para>
    64 
    6560<para>Install <application>UnZip</application> by running the following
    6661commands:</para>
     
    7065patch -Np1 -i ../unzip-&unzip-version;-dont_make_noise-1.patch &amp;&amp;
    7166cp unix/Makefile . &amp;&amp;
    72 make prefix=/usr linux &amp;&amp;
    73 make prefix=/usr linux_shlibz &amp;&amp;
    74 make prefix=/usr install &amp;&amp;
     67make prefix=/usr LOCAL_UNZIP=-DUSE_UNSHRINK linux &amp;&amp;
     68make prefix=/usr LOCAL_UNZIP=-DUSE_UNSHRINK linux_shlibz &amp;&amp;
     69make prefix=/usr LOCAL_UNZIP=-DUSE_UNSHRINK install &amp;&amp;
    7570cp -a libunzip.so* /usr/lib</command></userinput></screen>
    7671
     
    8075<title>Command explanations</title>
    8176
    82 <para><command>make prefix=/usr linux</command>: This command overrides the
    83 prefix variable that is set to <filename class="directory">/usr/local</filename>
    84 in the <filename>Makefile</filename> and builds the executables for a Linux
    85 system. The alternatives to 'linux' can be seen with a
     77<para><command>make prefix=/usr LOCAL_UNZIP=-DUSE_UNSHRINK linux</command>:
     78This command overrides the <varname>prefix</varname> variable that is
     79set to <filename class="directory">/usr/local</filename> in the
     80<filename>Makefile</filename>, sets the <envar>LOCAL_UNZIP</envar>
     81environment variable to instruct <application>UnZip</application> to use
     82the shrinking algorithm based on the <acronym>LZW</acronym> compression
     83algorithm, and builds the executables for a Linux system.
     84The alternatives to 'linux' can be seen with a
    8685<command>make list</command> command.</para>
    8786
    88 <para><command>make prefix=/usr linux_shlibz</command>: Build shared
     87<para><command>make ... linux_shlibz</command>: Build shared
    8988<filename>libunzip</filename> and link <application>UnZip</application> against
    9089it and <application>zlib</application>.</para>
  • introduction/welcome/changelog.xml

    r682f8ef8 r1ae85332  
    1919<itemizedlist>
    2020
     21<listitem><para>July 9th, 2004 [igor]: Added shrink compression
     22method to UnZip.</para></listitem>
     23
    2124<listitem><para>July 8th, 2004 [larry]: Update to GConf-2.6.2,
    2225ORBit2-2.10.2 and libbonobo-2.6.2.</para></listitem>
Note: See TracChangeset for help on using the changeset viewer.