version of weechat using utf8proc
 
 
 
 
 
 
Go to file
Sébastien Helleu f3e0bd5987 debian: add directory debian-devel to build debian devel packages (snapshots) 2015-10-24 13:00:06 +02:00
cmake ruby: fix Ruby detection when pkg-config is not installed 2015-09-07 10:35:31 +02:00
debian-devel debian: add directory debian-devel to build debian devel packages (snapshots) 2015-10-24 13:00:06 +02:00
debian-stable debian: rename directory debian to debian-stable 2015-10-24 13:00:06 +02:00
doc doc: update German auto-generated files 2015-10-24 12:59:38 +02:00
po core: update German translations 2015-10-23 14:09:54 +02:00
src irc: add "cap-notify" in list of supported capabilities (/help cap) 2015-10-18 19:19:03 +02:00
tests api: fix handle of invalid escape in function string_convert_escaped_chars() 2015-08-24 11:05:31 +02:00
tools Rename script build.sh to build-test.sh 2015-10-22 20:54:12 +02:00
.gitattributes debian: add directory debian-devel to build debian devel packages (snapshots) 2015-10-24 13:00:06 +02:00
.gitignore debian: add directory debian-devel to build debian devel packages (snapshots) 2015-10-24 13:00:06 +02:00
.mailmap core: fix .mailmap entries for myself 2014-10-11 17:05:26 +02:00
.travis.yml Rename script build.sh to build-test.sh 2015-10-22 20:54:12 +02:00
AUTHORS.asciidoc core: add contributor in AUTHORS.asciidoc 2015-07-29 23:01:54 +02:00
CMakeLists.txt core: rename "build-scripts" directory to "tools" 2015-10-17 14:30:10 +02:00
COPYING Replaced GPL 2 license by GPL 3 2007-07-02 12:25:13 +00:00
ChangeLog.asciidoc core: update ChangeLog 2015-10-19 09:01:47 +02:00
Contributing.asciidoc core: use https for WeeChat URLs 2014-12-13 09:16:09 +01:00
Makefile.am Rename script build.sh to build-test.sh 2015-10-22 20:54:12 +02:00
README.asciidoc doc: replace PREFIX with CMAKE_INSTALL_PREFIX in cmake instructions (closes #354) 2015-05-17 08:48:54 +02:00
ReleaseNotes.asciidoc Version 1.3 2015-08-16 08:27:07 +02:00
autogen.sh core: update copyright dates 2015-01-01 09:23:23 +01:00
config.h.cmake guile: fix compilation with Guile < 2.0.4 (closes #198) 2014-09-20 15:43:29 +02:00
configure.ac doc: add build of Czech man page and quickstart guide 2015-09-27 22:11:21 +02:00
makedist.sh core: update copyright dates 2015-01-01 09:23:23 +01:00
weechat.cygport.in doc: replace PREFIX with CMAKE_INSTALL_PREFIX in cmake instructions (closes #354) 2015-05-17 08:48:54 +02:00
weechat.pc.in Install developement files for plugins and pkg-config support (cmake). 2009-05-08 23:37:13 +02:00
weechat.png core: update WeeChat logo (32x32 icon) 2013-05-23 14:53:42 +02:00
weechat.spec Version 1.3 2015-08-16 08:27:07 +02:00

README.asciidoc

= WeeChat
:author: Sébastien Helleu
:email: flashcode@flashtux.org
:lang: en


WeeChat (Wee Enhanced Environment for Chat) is a free chat client, fast and
light, designed for many operating systems.
It is highly customizable and extensible with scripts.

Homepage: https://weechat.org/

image:https://travis-ci.org/weechat/weechat.svg?branch=master["Build Status", link="https://travis-ci.org/weechat/weechat"]

== Features

* Modular chat client with a lightweight core and optional plugins.
* Multi-platform (GNU/Linux, *BSD, Mac OS X, QNX, Windows & other).
* Multi-protocols architecture (mainly IRC).
* Compliant with IRC RFCs 1459, 2810, 2811, 2812 and 2813.
* Small, fast and very light.
* Customizable and extensible with plugins (C, Perl, Python, Ruby, Lua, Tcl,
  Guile, Javascript).
* Fully documented and translated into several languages.
* Developed from scratch.
* Free software, released under GPLv3.

image::https://weechat.org/media/images/screenshots/weechat/medium/weechat_2013-04-27_phlux_shadow.png[align="center"]

== Install

=== Dependencies

Following packages are *required*:

* CMake
* libncurses
* libcurl
* zlib
* libgcrypt

Following packages are optional:

* for i18n: gettext
* for SSL: gnutls, ca-certificates
* for spell checking: aspell
* for scripting: python, perl, ruby, lua, tcl, guile, libv8 (javascript)
* for building doc: asciidoc, source-highlight
  (for man page: xsltproc, docbook-xml, docbook-xsl)
* for building tests: C++ compiler, CppUTest

For a complete list of dependencies and versions recommended, please look at
https://weechat.org/files/doc/devel/weechat_user.en.html#dependencies[user's guide].

=== Compile

WeeChat can be built with http://cmake.org/[CMake] (recommended) or autotools.

[NOTE]
Only CMake is officially supported to build WeeChat. You should use autotools
only if you are not able to use CMake. +
Build with autotools requires more dependencies and is slower than with CMake.

----
$ mkdir build
$ cd build
$ cmake .. -DCMAKE_INSTALL_PREFIX=/path/to/directory
$ make
$ make install     (as root for installation in system directories)
----

For more information or installation with autotools, please look at
https://weechat.org/files/doc/devel/weechat_user.en.html#compile_with_autotools[user's guide].

== Copyright

Copyright (C) 2003-2015 Sébastien Helleu <flashcode@flashtux.org>

This file is part of WeeChat, the extensible chat client.

WeeChat is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.

WeeChat is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with WeeChat.  If not, see <http://www.gnu.org/licenses/>.