diff options
Diffstat (limited to 'INSTALL.md')
-rw-r--r-- | INSTALL.md | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -5,8 +5,9 @@ | |||
5 | Build dependencies: | 5 | Build dependencies: |
6 | 6 | ||
7 | ```bash | 7 | ```bash |
8 | apt-get install build-essential libtool autotools-dev automake libconfig-dev ncurses-dev | 8 | apt-get install build-essential libtool autotools-dev automake libconfig-dev ncurses-dev cmake checkinstall |
9 | ``` | 9 | ``` |
10 | Note that `libconfig-dev` should be >= 1.4. | ||
10 | 11 | ||
11 | You should get and install [libsodium](https://github.com/jedisct1/libsodium): | 12 | You should get and install [libsodium](https://github.com/jedisct1/libsodium): |
12 | ```bash | 13 | ```bash |
@@ -15,7 +16,7 @@ cd libsodium | |||
15 | git checkout tags/0.4.2 | 16 | git checkout tags/0.4.2 |
16 | ./autogen.sh | 17 | ./autogen.sh |
17 | ./configure && make check | 18 | ./configure && make check |
18 | sudo make install | 19 | sudo checkinstall --install --pkgname libsodium --pkgversion 0.4.2 --nodoc |
19 | sudo ldconfig | 20 | sudo ldconfig |
20 | ``` | 21 | ``` |
21 | 22 | ||
@@ -68,7 +69,7 @@ You have to [modify your PATH environment variable](http://www.computerhope.com/ | |||
68 | 69 | ||
69 | Then you should either clone this repo by using git, or just download a [zip of current Master branch](https://github.com/irungentoo/ProjectTox-Core/archive/master.zip) and extract it somewhere. | 70 | Then you should either clone this repo by using git, or just download a [zip of current Master branch](https://github.com/irungentoo/ProjectTox-Core/archive/master.zip) and extract it somewhere. |
70 | 71 | ||
71 | After that you should get precompiled packages of libsodium from [here](https://download.libsodium.org/libsodium/releases/) and extract the archive into this repo's root. That is, `sodium` folder should be along with `core`, `testing` and other folders. | 72 | After that you should get precompiled package of libsodium from [here](https://download.libsodium.org/libsodium/releases/libsodium-win32-0.4.2.tar.gz) and extract the archive into this repo's root. That is, `sodium` folder should be along with `core`, `testing` and other folders. |
72 | 73 | ||
73 | Navigate in `cmd` to this repo and run: | 74 | Navigate in `cmd` to this repo and run: |
74 | ```cmd | 75 | ```cmd |