irctk

libircclient binding for scripts
git clone https://a3nm.net/git/irctk/
Log | Files | Refs | README

commit fdec242a4383a3ff3df82ba756d78d77d9ff3577
parent 5fbb35c138039281faf8aa837fb5220b29c5123c
Author: Antoine Amarilli <a3nm@a3nm.net>
Date:   Sun,  1 Nov 2015 02:05:49 +0100

libssl-dev needed to compile

Diffstat:
README | 16+++++++++++-----
1 file changed, 11 insertions(+), 5 deletions(-)

diff --git a/README b/README @@ -25,11 +25,17 @@ quickly, either in the shell or in your favourite programming language. == 2. Installation == You will need the libircclient library (version >= 1.8 with SSL support) to -compile and run irctk. On Debian Jessie and later, sufficiently recent versions -are packaged as libircclient1 and libircclient-dev. You can then compile irctk -by issuing "make". Install irctk by yourself in a location of your PATH if you -want to use it as "irctk", otherwise replace "irctk" by "./irctk" in the next -examples. +compile and run irctk, as well as libssl-dev. On Debian Jessie and later, +sufficiently recent versions can be installed with: + + sudo apt-get install libircclient1 libircclient-dev libssl-dev + +You can then compile irctk by issuing "make". Install irctk by yourself in a +location of your PATH if you want to use it as "irctk", otherwise replace +"irctk" by "./irctk" in the next examples. + +The rest of this section presents how to compile libircclient by yourself if +necessary, and how to install irctk without requiring root privileges. === 2.1. Compiling libircclient ===