An open API service indexing awesome lists of open source software.

https://github.com/tzutalin/minizip

Minizip for Unix/Linux and mobile devices
https://github.com/tzutalin/minizip

unzip zip

Last synced: 12 months ago
JSON representation

Minizip for Unix/Linux and mobile devices

Awesome Lists containing this project

README

          

# Minizip. Portable zip & unzip lib

Based on the original work of [Gilles Vollant](http://www.winimage.com/zLibDll/minizip.html) and [nmoinvaz](https://github.com/nmoinvaz). I wrap the [minizip](https://github.com/nmoinvaz/minizip) to a shared library and execute files for Android and Unix/Linux

### Benefits

* Very small
* Easy to use
* Cross-platform

### Requirement:

* Zlib. The Zlib library allows to deflate compressed files and to create gzip (.gz) files. Zlib is free software and small.

### Build

Build share library and test exe via CMake
```
mkdir build
cd build
cmake .. -DCMAKE_INSTALL_PREFIX=./install;make;make install
```

Cross compile for Android via Android makefile
```
Include the Android.mk
```

### Usage of share library

```
#include

unzip(src, dst);
```