The Zip package contains Zip utilities. These are useful for compressing files into ZIP archives.
Download (HTTP): http://www.mirrorservice.org/sites/ftp.info-zip.org/pub/infozip/src/zip231.tar.gz
Download (FTP): ftp://ftp.info-zip.org/pub/infozip/src/zip231.tar.gz
Download MD5 sum: 6bfc076664416251d7624ab3538d1cb9
Download size: 781 KB
Estimated disk space required: 4.1 MB
Estimated build time: 0.04 SBU
Install Zip by running the following commands:
sed -i -e 's@$(INSTALL) man/zip.1@$(INSTALL_PROGRAM) man/zip.1@' \ unix/Makefile && make prefix=/usr -f unix/Makefile generic_gcc
This package does not come with a test suite.
Now, as the root user:
make prefix=/usr -f unix/Makefile install
sed -i -e ... unix/Makefile: The Makefile has a bug which causes the installation to fail. This command fixes the problem.
make prefix=/usr -f unix/Makefile generic_gcc: This command overrides the prefix variable that is set to /usr/local in the unix/Makefile which is used as a Makefile and builds the executables for a Linux system. The alternatives to generic_gcc can be seen with a make -f unix/Makefile list command.
Last updated on 2005-08-01 13:29:19 -0600