mirror of
https://github.com/PurpleI2P/i2pd-tools.git
synced 2025-02-02 02:54:02 +01:00
readme
This commit is contained in:
parent
c275332df0
commit
3c7e4d31e9
19
README.md
19
README.md
|
@ -17,14 +17,27 @@ Notice: git submodules are used so make sure to clone this repository recursivel
|
||||||
* libssl
|
* libssl
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
sudo apt-get install \
|
|
||||||
libboost-chrono-dev \
|
depend="libboost-chrono-dev \
|
||||||
libboost-date-time-dev \
|
libboost-date-time-dev \
|
||||||
libboost-filesystem-dev \
|
libboost-filesystem-dev \
|
||||||
libboost-program-options-dev \
|
libboost-program-options-dev \
|
||||||
libboost-system-dev \
|
libboost-system-dev \
|
||||||
libboost-thread-dev \
|
libboost-thread-dev \
|
||||||
libssl-dev
|
libssl-dev"
|
||||||
|
kernel=`uname -a`
|
||||||
|
|
||||||
|
case "$kernel" in
|
||||||
|
*ubuntu*)
|
||||||
|
sudo apt install $depend;;
|
||||||
|
*debian*)
|
||||||
|
sudo aptitude install $depend;;
|
||||||
|
*gentoo*)
|
||||||
|
sudo emerge --deep --newuse dev-libs/boost dev-libs/openssl;;
|
||||||
|
|
||||||
|
*)
|
||||||
|
echo "Just install libboost and libopenssl dev packages on your pc";;
|
||||||
|
esac
|
||||||
```
|
```
|
||||||
|
|
||||||
### Building
|
### Building
|
||||||
|
|
Loading…
Reference in a new issue