From 3b52624f58f4044e655920fb4e0784be3a897b03 Mon Sep 17 00:00:00 2001 From: Astonex Date: Tue, 30 Jul 2013 04:41:09 +0100 Subject: Update INSTALL.md Changing the libsodium link from a list of its release archives to the windows specific one - it is windows specific install instructions after all. --- INSTALL.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'INSTALL.md') diff --git a/INSTALL.md b/INSTALL.md index 8e67d848..c3deec36 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -68,7 +68,7 @@ You have to [modify your PATH environment variable](http://www.computerhope.com/ 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. -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. +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. Navigate in `cmd` to this repo and run: ```cmd -- cgit v1.2.3 From 1ae27fb227939dc2debb69bb02530ae183663367 Mon Sep 17 00:00:00 2001 From: dypa Date: Tue, 30 Jul 2013 06:40:16 -0700 Subject: replace make install to checkinstall for linux installation --- INSTALL.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'INSTALL.md') diff --git a/INSTALL.md b/INSTALL.md index c3deec36..d309cbcd 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -5,7 +5,7 @@ Build dependencies: ```bash -apt-get install build-essential libtool autotools-dev automake libconfig-dev ncurses-dev +apt-get install build-essential libtool autotools-dev automake libconfig-dev ncurses-dev checkinstall ``` You should get and install [libsodium](https://github.com/jedisct1/libsodium): @@ -15,7 +15,7 @@ cd libsodium git checkout tags/0.4.2 ./autogen.sh ./configure && make check -sudo make install +sudo checkinstall --install --pkgname libsodium --pkgversion 0.4.2 --nodoc sudo ldconfig ``` -- cgit v1.2.3 From d1a26f720f68640dad2616645d28c328ecb1cfcd Mon Sep 17 00:00:00 2001 From: Greg Date: Tue, 30 Jul 2013 11:04:59 -0400 Subject: Update INSTALL.md --- INSTALL.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'INSTALL.md') diff --git a/INSTALL.md b/INSTALL.md index c3deec36..8ab367e7 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -5,7 +5,7 @@ Build dependencies: ```bash -apt-get install build-essential libtool autotools-dev automake libconfig-dev ncurses-dev +apt-get install build-essential libtool autotools-dev automake libconfig-dev ncurses-dev cmake ``` You should get and install [libsodium](https://github.com/jedisct1/libsodium): -- cgit v1.2.3 From 60250546ca7876cc013217d8e21716322dd76378 Mon Sep 17 00:00:00 2001 From: Maxim Biro Date: Tue, 30 Jul 2013 13:27:32 -0400 Subject: Added a note about libconfig --- INSTALL.md | 1 + 1 file changed, 1 insertion(+) (limited to 'INSTALL.md') diff --git a/INSTALL.md b/INSTALL.md index 9e89c8b3..3459a5c7 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -7,6 +7,7 @@ Build dependencies: ```bash apt-get install build-essential libtool autotools-dev automake libconfig-dev ncurses-dev cmake checkinstall ``` +Note that `libconfig-dev` should be >= 1.4. You should get and install [libsodium](https://github.com/jedisct1/libsodium): ```bash -- cgit v1.2.3 From fedb82e9d66fd11e87ea55bcfbd4c2fb4058a741 Mon Sep 17 00:00:00 2001 From: Devon Stewart Date: Wed, 31 Jul 2013 15:37:31 +0900 Subject: Adding homebrew commands to INSTALL --- INSTALL.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) (limited to 'INSTALL.md') diff --git a/INSTALL.md b/INSTALL.md index 3459a5c7..9efa7ee9 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -42,7 +42,17 @@ make ###OSX: -Much the same as above, remember to install the latest XCode and the developer tools (Preferences -> Downloads -> Command Line Tools). +####Homebrew: +``` +brew install libtool automake autoconf libconfig libsodium +cmake . +make +sudo make install +``` + +####Non-homebrew: + +Much the same as Linux, remember to install the latest XCode and the developer tools (Preferences -> Downloads -> Command Line Tools). Users running Mountain Lion and the latest version of XCode (4.6.3) will also need to install libtool, automake and autoconf. They are easy enough to install, grab them from http://www.gnu.org/software/libtool/, http://www.gnu.org/software/autoconf/ and http://www.gnu.org/software/automake/, then follow these steps for each: -- cgit v1.2.3