Collection of .deb/.rpm packages for World of Warships tools.
The repositories are available at: https://wows-tools.github.io/wows-pkg/
| Package | Description |
|---|---|
| wows-depack | CLI and library for unpacking World of Warships resource archives |
| wows-extractor-gui | Graphical resource extractor and 3D model viewer |
| wows-fuse | FUSE filesystem for mounting World of Warships resource packages |
| wows-model-exporter | 3D model export tools and geometry parsing library |
| wows-splash | CLI and library for parsing World of Warships splash files |
| Package | Description | Original Author |
|---|---|---|
| wows-monitor | Matchmaking monitor for World of Warships | wows-monitor.com |
| wows-toolkit | Swiss army knife for WoWS: replay browser, file extractor, armor viewer, and unpack CLI | landaire |
If you are using Ubuntu/Debian, here how to install the repository:
# If you are not root
export SUDO=sudo
# Get your OS version
. /etc/os-release
# Get the architecture
ARCH=$(dpkg --print-architecture)
# Add the GPG key
${SUDO} install -dm755 /etc/apt/keyrings
wget -qO - https://wows-tools.github.io/wows-pkg/GPG-KEY.pub | \
${SUDO} tee /etc/apt/keyrings/wows-pkg.asc >/dev/null
# Add the repository
cat << EOF | ${SUDO} tee /etc/apt/sources.list.d/wows-pkg.sources
Types: deb
URIs: https://wows-tools.github.io/wows-pkg/deb.${VERSION_CODENAME}.${ARCH}/
Suites: ${VERSION_CODENAME}
Components: main
Architectures: ${ARCH}
Signed-By: /etc/apt/keyrings/wows-pkg.asc
EOF
# update
${SUDO} apt updateCheck the pakste documentation.