Difference between revisions of "Zip"

From CBLFS
Jump to navigationJump to search
Line 19: Line 19:
 
Compile the package:
 
Compile the package:
  
sed -i -e 's@$(INSTALL) man/zip.1@$(INSTALL_PROGRAM) man/zip.1@' \
+
  make -f unix/Makefile generic
unix/Makefile &&
 
  make prefix=/usr -f unix/Makefile generic_gcc
 
  
 
Install the package
 
Install the package
Line 38: Line 36:
 
Compile the package:
 
Compile the package:
  
  sed -i -e 's@$(INSTALL) man/zip.1@$(INSTALL_PROGRAM) man/zip.1@' \
+
  make -f unix/Makefile generic CC="gcc ${BUILD32}"  
unix/Makefile &&
 
make prefix=/usr CC="gcc ${BUILD32}" -f unix/Makefile generic
 
  
 
Install the package
 
Install the package
Line 50: Line 46:
 
Compile the package:
 
Compile the package:
  
  sed -i -e 's@$(INSTALL) man/zip.1@$(INSTALL_PROGRAM) man/zip.1@' \
+
  make -f unix/Makefile generic CC="gcc ${BUILDN32}"
unix/Makefile &&
 
make prefix=/usr CC="gcc ${BUILDN32}" -f unix/Makefile generic
 
  
 
Install the package
 
Install the package
Line 62: Line 56:
 
Compile the package:
 
Compile the package:
  
  sed -i -e 's@$(INSTALL) man/zip.1@$(INSTALL_PROGRAM) man/zip.1@' \
+
  make -f unix/Makefile generic CC="gcc ${BUILD64}"
unix/Makefile &&
 
make prefix=/usr CC="gcc ${BUILD64}" -f unix/Makefile generic
 
  
 
Install the package
 
Install the package

Revision as of 15:38, 23 June 2009

Download Source: ftp://tug.ctan.org/tex-archive/tools/zip/info-zip/src/zip30.tar.gz

Introduction to Zip

Project Homepage: Unknown

Dependencies

Additional Configuration Options

Use the make -f unix/Makefile list command to see the alternatives to generic_gcc for make.

Non-Multilib

Compile the package:

make -f unix/Makefile generic

Install the package

make prefix=/usr -f unix/Makefile install

Command Explanations

make prefix=/usr -f unix/Makefile install: This sets the prefix variable to /usr instead of /usr/local which is the default.

Multilib

This package does not provide any libraries so only one installation is needed.

32Bit

Compile the package:

make -f unix/Makefile generic CC="gcc ${BUILD32}" 

Install the package

make prefix=/usr -f unix/Makefile install

N32

Compile the package:

make -f unix/Makefile generic CC="gcc ${BUILDN32}"

Install the package

make prefix=/usr -f unix/Makefile install

64Bit

Compile the package:

make -f unix/Makefile generic CC="gcc ${BUILD64}"

Install the package

make prefix=/usr -f unix/Makefile install

Contents

Installed Programs: zip, zipcloak, zipnote, and zipsplit
Installed Libraries: None
Installed Directories: None

Short Descriptions

zip compresses files into a ZIP archive.
zipcloak is a utility to encrypt and decrypt a ZIP archive.
zipnote reads or writes comments stored in a ZIP file.
zipsplit is a utility to split ZIP files into smaller files.