comparison INSTALL.md @ 0:1158cffe5a5e

Initial import
author David Demelier <markand@malikania.fr>
date Mon, 08 Feb 2016 16:43:14 +0100
parents
children d7d0e239fb0e
comparison
equal deleted inserted replaced
-1:000000000000 0:1158cffe5a5e
1 IRC Client Daemon INSTALL
2 =========================
3
4 This guide will help you to install irccd on your computer. For a better guide
5 with more details see:
6
7 http://projects.malikania.fr/irccd/guide.html
8
9 Requirements
10 ------------
11
12 - GCC 5.1 or Clang 3.4,
13 - [CMake](http://www.cmake.org). Used to build irccd.
14
15 Optional:
16
17 - [OpenSSL](http://openssl.org), Used for SSL connections to IRC servers, recommended,
18 - [Pandoc](http://pandoc.org). Used for documentation process,
19 - [Doxygen](http://www.stack.nl/~dimitri/doxygen). For the documentation about irccd internals.
20
21 Basic installation
22 ------------------
23
24 This is the quick way to install irccd.
25
26 ````
27 tar xvzf irccd-x.y.z-tar.xz
28 cd irccd-x.y.z
29 mkdir _build_
30 cd _build_
31 cmake .. -DCMAKE_BUILD_TYPE=Release
32 make
33 sudo make install
34 ````