Difference between revisions of "Unzip"
Weibullguy (talk | contribs) m (Non Intel target.) |
|||
Line 14: | Line 14: | ||
== Non-Multilib == | == Non-Multilib == | ||
− | Compile the package: | + | Compile the package for Intel processor systems: |
make -f unix/Makefile LOCAL_UNZIP=-D_FILE_OFFSET_BITS=64 linux | make -f unix/Makefile LOCAL_UNZIP=-D_FILE_OFFSET_BITS=64 linux | ||
+ | |||
+ | Compile the package for '''non'''-Intel processor systems: | ||
+ | |||
+ | make -f unix/Makefile LOCAL_UNZIP=-D_FILE_OFFSET_BITS=64 linux_noasm | ||
Install the package | Install the package |
Revision as of 14:54, 2 December 2006
Download Source: | http://www.mirrorservice.org/sites/ftp.info-zip.org/pub/infozip/src/unzip552.tar.gz |
---|---|
Download Source: | ftp://ftp.info-zip.org/pub/infozip/src/unzip552.tar.gz |
Contents
Dependencies
Non-Multilib
Compile the package for Intel processor systems:
make -f unix/Makefile LOCAL_UNZIP=-D_FILE_OFFSET_BITS=64 linux
Compile the package for non-Intel processor systems:
make -f unix/Makefile LOCAL_UNZIP=-D_FILE_OFFSET_BITS=64 linux_noasm
Install the package
make prefix=/usr install
Multilib
This package does not provide any libraries so only one installation is needed.
32Bit
Compile the package:
make -f unix/Makefile LOCAL_UNZIP=-D_FILE_OFFSET_BITS=64 \ CC="gcc ${BUILD32}" LD='$(CC)' CF="-O -Wall -I. -DUSE_UNSHRINK" \ unzips
Install the package
make -f unix/Makefile prefix=/usr install
N32
Compile the package:
make -f unix/Makefile LOCAL_UNZIP=-D_FILE_OFFSET_BITS=64 \ CC="gcc ${BUILDN32}" LD='$(CC)' CF="-O -Wall -I. -DUSE_UNSHRINK" \ unzips
Install the package
make -f unix/Makefile prefix=/usr install
64Bit
Compile the package:
make -f unix/Makefile LOCAL_UNZIP=-D_FILE_OFFSET_BITS=64 \ CC="gcc ${BUILD64}" LD='$(CC)' CF="-O -Wall -I. -DUSE_UNSHRINK" \ unzips
Install the package
make -f unix/Makefile prefix=/usr install
Contents
The UnZip package contains ZIP extraction utilities.
Installed Programs: funzip, unzip, unzipfsx, zipgrep, zipinfo
Installed Library: None
Installed Directories: None
Short Descriptions
funzip: allows the output of unzip commands to be redirected.
unzip: lists, tests or extracts files from a ZIP archive.
unzipfsx: is a self-extracting stub that can be prepended to a ZIP archive. Files in this format allow the recipient to decompress the archive without installing UnZip.
zipgrep: searches files in a ZIP archive for lines matching a pattern.
zipinfo: produces technical information about the files in a ZIP archive, including file access permissions, encryption status, type of compression, etc.