Skip to content

Latest commit

 

History

History
56 lines (38 loc) · 1.12 KB

INSTALL.md

File metadata and controls

56 lines (38 loc) · 1.12 KB

How to Build

To build mount-zip, you need the following libraries:

On Debian systems, you can get these libraries by installing the following packages:

$ sudo apt install libboost-container-dev libicu-dev libfuse-dev libzip-dev

To build mount-zip, you also need the following tools:

On Debian systems, you can get these tools by installing the following packages:

$ sudo apt install g++ pkg-config make pandoc

The following tools are required for running the black-box tests:

  • Python >= 3.8

To build mount-zip:

$ make

To run mount-zip's tests:

$ make check

To install mount-zip:

$ sudo make install

To uninstall mount-zip:

$ sudo make uninstall