2024-10-06 17:01:05 +02:00
|
|
|
# Steam Collector
|
|
|
|
Easily download collections and mods from steam.
|
2024-10-05 17:13:33 +02:00
|
|
|
|
|
|
|
# Requirements
|
2024-10-06 17:01:05 +02:00
|
|
|
- steamcmd
|
2024-10-05 17:13:33 +02:00
|
|
|
|
|
|
|
# Installing
|
|
|
|
|
|
|
|
From source:
|
|
|
|
```
|
|
|
|
make all
|
|
|
|
sudo make install
|
|
|
|
```
|
|
|
|
|
|
|
|
Using rpm:
|
|
|
|
```
|
|
|
|
make all
|
|
|
|
cd build
|
|
|
|
cpack -G RPM
|
|
|
|
sudo rpm -i *.rpm
|
|
|
|
```
|
|
|
|
|
|
|
|
Using deb:
|
|
|
|
```
|
|
|
|
make all
|
|
|
|
cd build
|
|
|
|
cpack -G deb
|
|
|
|
sudo dpkg -i *.deb
|
|
|
|
```
|
|
|
|
|
|
|
|
Using PKGBUILD:
|
|
|
|
```
|
|
|
|
makepkg -si PKGBUILD
|
|
|
|
```
|
|
|
|
|
|
|
|
# Usage
|
|
|
|
|
|
|
|
## Help message
|
|
|
|
```
|
2024-10-06 17:01:05 +02:00
|
|
|
usage: Steam Collector [flags] [<command> [args]]
|
2024-10-05 17:13:33 +02:00
|
|
|
LISTING COMMANDS:
|
2024-10-06 17:01:05 +02:00
|
|
|
-c: Install a collection.
|
|
|
|
-m: Install a specific mod.
|
2024-10-05 17:13:33 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
# Contributors
|
|
|
|
- DRAGONTOS
|
2024-10-06 23:26:46 +02:00
|
|
|
- maukkis
|