summaryrefslogtreecommitdiff
path: root/INSTALL.md
diff options
context:
space:
mode:
authorZetok Zalbavar <zexavexxe@gmail.com>2016-09-29 19:42:24 +0100
committerZetok Zalbavar <zexavexxe@gmail.com>2016-09-30 08:23:22 +0100
commit48ddb115995f2bb55a736ae4cc54c70f3d34eeb4 (patch)
tree5adc6b933ebe7660f18c79a67afbfab3be4c4392 /INSTALL.md
parent30e86c5eb0c8c3466bf6cbc750e01ba97c2dc80c (diff)
docs(INSTALL): update compiling instructions for Linux
Also change links from irungentoo/toxcore to TokTok/toxcore
Diffstat (limited to 'INSTALL.md')
-rw-r--r--INSTALL.md13
1 files changed, 6 insertions, 7 deletions
diff --git a/INSTALL.md b/INSTALL.md
index 2c71d6e6..a0896098 100644
--- a/INSTALL.md
+++ b/INSTALL.md
@@ -119,12 +119,11 @@ sudo ldconfig
119 119
120##### Compile toxcore 120##### Compile toxcore
121 121
122Then clone this repo, generate makefile, and install `toxcore` system-wide: 122Then clone this repo, run `cmake`, and install `toxcore` system-wide:
123```bash 123```bash
124git clone https://github.com/irungentoo/toxcore.git 124git clone https://github.com/TokTok/toxcore.git
125cd toxcore 125cd toxcore
126autoreconf -i 126cmake .
127./configure
128make 127make
129sudo make install 128sudo make install
130``` 129```
@@ -153,7 +152,7 @@ brew install libtool automake autoconf libsodium check
153``` 152```
154Then clone this repo and generate makefile: 153Then clone this repo and generate makefile:
155```bash 154```bash
156git clone https://github.com/irungentoo/toxcore.git 155git clone https://github.com/TokTok/toxcore.git
157cd toxcore 156cd toxcore
158autoreconf -i 157autoreconf -i
159./configure 158./configure
@@ -405,7 +404,7 @@ cd ..
405 404
406And finally we will build Tox: 405And finally we will build Tox:
407```bash 406```bash
408git clone https://github.com/irungentoo/toxcore 407git clone https://github.com/TokTok/toxcore
409cd toxcore 408cd toxcore
410./autogen.sh 409./autogen.sh
411./configure --host="$WINDOWS_TOOLCHAIN" --prefix="$PREFIX_DIR" --disable-ntox --disable-tests --disable-testing --with-dependency-search="$PREFIX_DIR" --disable-shared --enable-static 410./configure --host="$WINDOWS_TOOLCHAIN" --prefix="$PREFIX_DIR" --disable-ntox --disable-tests --disable-testing --with-dependency-search="$PREFIX_DIR" --disable-shared --enable-static
@@ -462,7 +461,7 @@ cd ..
462 461
463You can also use a precompiled win32 binary of libsodium, however you will have to place the files in places where they can be found, i.e., dll's go to /bin headers to /include and libraries to /lib directories in your MinGW shell. 462You can also use a precompiled win32 binary of libsodium, however you will have to place the files in places where they can be found, i.e., dll's go to /bin headers to /include and libraries to /lib directories in your MinGW shell.
464 463
465Next, install toxcore library, should either clone this repo by using git, or just download a [zip of current Master branch](https://github.com/irungentoo/toxcore/archive/master.zip) and extract it somewhere. 464Next, install toxcore library, should either clone this repo by using git, or just download a [zip of current Master branch](https://github.com/TokTok/toxcore/archive/master.zip) and extract it somewhere.
466 465
467Assuming that you now have the sources in the toxcore directory: 466Assuming that you now have the sources in the toxcore directory:
468 467