Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 950 Bytes

README.md

File metadata and controls

30 lines (21 loc) · 950 Bytes

libarp

ARP is a binary format for packing resource files in a structured manner. libarp is a reference implementation of pack/unpack functionality for the format.

ARP's full specification can be found in the SPEC.md file in this repository.

Compiling

libarp depends on zlib for DEFLATE (de)compression support. This library is provided as a Git submodule within this repository and will be automatically built alongside the root project.

To build:

git submodule update --init
mkdir build
cd build
cmake ..
cmake --build .

License

libarp is made available under the MIT License. You may use, modify, and distribute the project within its terms.

The ARP specification is made available under the Apache License, Version 2.0. You may use, modify and redistribute the specification within its terms.