weechat/INSTALL
2012-10-19 14:28:35 +02:00

44 lines
1.2 KiB
Plaintext

WeeChat Installation instructions
=================================
You can build WeeChat with cmake (recommended way) or autotools.
Dependencies
------------
List of dependencies can be found in user's guide, see page with WeeChat docs:
http://www.weechat.org/doc
With cmake
----------
------------------------------------------------------------------
mkdir build
cd build
cmake .. -DPREFIX=/where/you/want/install -DCMAKE_BUILD_TYPE=Debug
make
make install (as root for installation in system directories)
------------------------------------------------------------------
With autotools
--------------
----------------------------------------------------------------------
./autogen.sh (for cloned git repository only, not .tar.XX package)
./configure --prefix=/where/you/want/install
make
make install (as root for installation in system directories)
----------------------------------------------------------------------
If you want to report bugs/crashes to developers, please:
- compile with debug info (type "Debug" for cmake build, default for autotools),
- enable core files (for bash shell, add "ulimit -c unlimited" to your ~/.bashrc).
See AUTHORS for support, feel free to contact us for any problem.