summaryrefslogtreecommitdiff
path: root/INSTALL.md
diff options
context:
space:
mode:
authorpb82 <peter-braun@gmx.net>2013-08-03 13:16:52 +0200
committerpb82 <peter-braun@gmx.net>2013-08-03 13:16:52 +0200
commit4175f73ea8005067cc2570918d708864fa8084b1 (patch)
tree676ebe783b38af803ae8fb8bba6910fd7cef7e8f /INSTALL.md
parente029b65eceef49f3cf5a29d612dde0c184f74287 (diff)
installation instructions for Fedora (17)
Diffstat (limited to 'INSTALL.md')
-rw-r--r--INSTALL.md20
1 files changed, 20 insertions, 0 deletions
diff --git a/INSTALL.md b/INSTALL.md
index d6a5b3f9..211226da 100644
--- a/INSTALL.md
+++ b/INSTALL.md
@@ -18,6 +18,14 @@ Build dependencies:
18```bash 18```bash
19apt-get install build-essential libtool autotools-dev automake libconfig-dev ncurses-dev cmake checkinstall 19apt-get install build-essential libtool autotools-dev automake libconfig-dev ncurses-dev cmake checkinstall
20``` 20```
21
22on Fedora:
23
24```bash
25yum groupinstall "Development Tools"
26yum install libtool autoconf automake libconfig-devel ncurses-devel cmake
27```
28
21Note that `libconfig-dev` should be >= 1.4. 29Note that `libconfig-dev` should be >= 1.4.
22 30
23You should get and install [libsodium](https://github.com/jedisct1/libsodium): 31You should get and install [libsodium](https://github.com/jedisct1/libsodium):
@@ -31,6 +39,18 @@ sudo checkinstall --install --pkgname libsodium --pkgversion 0.4.2 --nodoc
31sudo ldconfig 39sudo ldconfig
32``` 40```
33 41
42or without checkinstall:
43```bash
44git clone git://github.com/jedisct1/libsodium.git
45cd libsodium
46git checkout tags/0.4.2
47./autogen.sh
48./configure
49make
50sudo make install
51```
52
53
34Then clone this repo and generate makefile: 54Then clone this repo and generate makefile:
35```bash 55```bash
36git clone git://github.com/irungentoo/ProjectTox-Core.git 56git clone git://github.com/irungentoo/ProjectTox-Core.git