1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
# Snoopy Command Logger - DEB packaging
## Info
The provided [packaging/debian](.) directory is not configured to be used directly, nor in a standalone fashion.
It only works when used within this Git repository, and with the provided tooling.
## How to build a DEB package
Steps:
- Clone this Git repository onto a supported system,
- Install the required development and packaging tools, and
- Use the package building script.
To clone this repository:
```
git clone https://github.com/a2o/snoopy
cd snoopy
```
To install the required software (this only needs to be done once):
```bash
./dev-tools/install-dev-software.sh
./dev-tools/install-packaging-software.sh
```
To build a DEB package:
```bash
./dev-tools/build-package-deb.sh
```
Done.
|