view INSTALL.md @ 793:292482f36454

irccd: make full support for origin in rule, #947 @1h
author David Demelier <markand@malikania.fr>
date Sun, 11 Nov 2018 10:39:10 +0100
parents 6bc92086b2a6
children 00a4720c4874
line wrap: on
line source

IRC Client Daemon INSTALL
=========================

This guide will help you to install irccd on your computer.

Requirements
------------

  - GCC 5.1 or Clang 3.4,
  - [Boost](http://boost.org),
  - [CMake](http://www.cmake.org).

Optional:

  - [OpenSSL](http://openssl.org), Used for SSL connections to IRC servers,
    recommended,
  - [Pandoc](http://pandoc.org), Used for documentation process,
  - [Doxygen](http://www.stack.nl/~dimitri/doxygen), For the documentation about
    irccd internals.

Basic installation
------------------

This is the quick way to install irccd.

    tar xvzf irccd-x.y.z-tar.xz
    cd irccd-x.y.z
    mkdir build
    cd build
    cmake .. -DCMAKE_BUILD_TYPE=Release
    make
    sudo make install