diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2020-05-24 16:48:22 +0200 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2020-05-25 21:57:14 +0200 |
commit | 31c69b6ca1b91e7fd9fd8e14082fd2584c5f538c (patch) | |
tree | 16e789c7d68608831b498f41f54d9482b82a711a /INSTALL |
first public release
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'INSTALL')
-rw-r--r-- | INSTALL | 28 |
1 files changed, 28 insertions, 0 deletions
@@ -0,0 +1,28 @@ +You need the following dependencies to run `makedeps.sh` successfully: + required: coreutils, wget, tar, gzip, bzip2, patch, cmake, make, + binutils, gcc, g++, autoconf, automake, flex, bison, texinfo, zlib + + Host TOR (HiddenService): + libevent, openssl + + Mingw TOR (LibTor): + perl + +On debian you can install them with: + `sudo apt-get install coreutils wget tar gzip bzip2 patch cmake make binutils gcc g++ autoconf automake flex bison texinfo libz-dev` + + Host TOR (HiddenService): + `sudo apt-get install libevent-dev libssl-dev` + + Mingw TOR (LibTor): + `sudo apt-get install perl` + +On archlinux: + `sudo pacman -Syu coreutils wget tar gzip bzip2 patch cmake make binutils gcc g++ autoconf automake flex bison texinfo zlib` + + Host TOR (HiddenService): + `sudo pacman -Syu libevent openssl` + + Mingw TOR (LibTor): + `sudo pacman -Syu perl` + |