2021-05-06 09:56:47 +02:00
|
|
|
# Dépollueur de courriel
|
|
|
|
|
2021-05-07 09:21:15 +02:00
|
|
|
## Compilation
|
|
|
|
|
|
|
|
```bash
|
|
|
|
sudo apt-get install --fix-missing build-essential make g++ libboost-program-options-dev libboost-system-dev libboost-filesystem-dev libcurl4-gnutls-dev
|
|
|
|
|
|
|
|
git clone https://git.kaz.bzh/KAZ/depollueur.git
|
|
|
|
# or for contributors :
|
|
|
|
# git clone git+ssh://git@git.kaz.bzh:2202/KAZ/depollueur.git
|
|
|
|
|
|
|
|
make -j $(nproc)
|
|
|
|
```
|