-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Arguments No Warning Applied, Version Date & Time Fix, README
- Loading branch information
Showing
8 changed files
with
56 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
# JAPM (Just Another PBO Manager) | ||
Utility allowing you to pack / unpack Bohemia Interactive's PBO files for Arma 3 game. Implemented in C and is cross-platform Linux / Windows, this piece of software can be used in automatized scripts which may come handy for server owners. | ||
|
||
## Features | ||
- Pack / Unpack | ||
- Supports Extended Header Format | ||
- Supports Compression | ||
|
||
## Building From Sources | ||
#### Linux | ||
``` | ||
$ mkdir build && cd build | ||
$ cmake .. | ||
$ make | ||
``` | ||
|
||
#### Windows (cross-building) | ||
``` | ||
$ mkdir build && cd build | ||
$ cmake -DCMAKE_TOOLCHAIN_FILE=../windows.cmake .. | ||
$ make | ||
``` | ||
|
||
## USAGE | ||
``` | ||
$ ./JAPM -h | ||
USAGE | ||
./JAPM [OPTIONS] input [output] | ||
OPTIONS | ||
-h Print this help message and discard other options | ||
-q Quiet: does not print status | ||
-w No warning | ||
-v Display version and discard other options | ||
``` | ||
|
||
## Credits | ||
[SHA1 Library](https://github.com/clibs/sha1) by Steve Reid | ||
|
||
## Thanks | ||
- Mikero for his PBO File Format wiki page | ||
- The various people who helped me searching how it was all working |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters