r-lyeh-archived / bundle

:package: Bundle, an embeddable compression library: DEFLATE, LZMA, LZIP, BZIP2, ZPAQ, LZ4, ZSTD, BROTLI, BSC, CSC, BCM, MCM, ZMOLLY, ZLING, TANGELO, SHRINKER, CRUSH, LZJB and SHOCO streams in a ZIP file (C++03)(C++11)
zlib License
610 stars 86 forks source link

where's a makefile? #19

Closed sokoow closed 8 years ago

sokoow commented 8 years ago

Hi,

Is this a command line utility or a library ? I'm missing a makefile somewhere, any plans of using one ?

r-lyeh-archived commented 8 years ago

Bundle is a compression library meant to be embedded into another application (like a command-line archiver, a game, or a bigger application). You only need drop bundle.hpp and bundle.cpp into your sources.

For example, to compile the demo try:

g++ demo.cc bundle.cpp -std=c++11 -lpthread

If you are looking for a compression utility, you can use https://github.com/r-lyeh/bundler instead (which is a compression tool that uses this very same compression library).

redthing1 commented 2 years ago

Hi,

Is this a command line utility or a library ? I'm missing a makefile somewhere, any plans of using one ?

https://github.com/redthing1/bundle/blob/master/Makefile