This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
nuzip /
| name | age | message | |
|---|---|---|---|
| |
LICENSE | ||
| |
NOTICE | Fri Oct 24 16:17:13 -0700 2008 | |
| |
Nukefile | Fri Oct 24 16:17:13 -0700 2008 | |
| |
README | Fri Oct 24 16:17:13 -0700 2008 | |
| |
objc/ | ||
| |
test/ | ||
| |
unzip101e-src/ | ||
| |
unzip101e-unused/ | Fri Oct 24 16:17:13 -0700 2008 |
README
NuZip is a simple Objective-C wrapper around Gilles Vollant's minizip. It was originally created to allow Nu-based applications to unpack zip files on platforms where command-line zip and unzip tools were not available. REQUIREMENTS To use the current build system, NuZip requires Nu and nuke. But it is also possible to add the NuZip sources to an existing Xcode project and adding -lz to the linker flags. USAGE NuZip currently has a trivially simple interface, methods called "zip:" and "unzip:" that take a single argument, a string that would correspond to the command-line arguments given to the minizip and miniunz tools. The additional "-q" option disables all printing and should be specified in embedded applications. AN EXAMPLE To unzip an archive named "MyArchive.zip" into a directory called "my_directory", use the following call from Nu: (NuZip unzip:"MyArchive.zip -d my_directory") To make the same call from Objective-C, use the following: [NuZip unzip:@"MyArchive.zip -d my_directory"]; BUILD AND TEST To build and test on a Mac OS X system with Nu installed, simply type "nuke test" in the project directory. AUTHOR The NuZip wrapper was written by Tim Burks but the core of the system, minizip, was created by Gilles Vollant. The NuZip wrapper is released under the Apache License, version 2.0. Copyright 2008, Neon Design Technology, Inc.








