Jump to content

Weechat: Difference between revisions

417 bytes added ,  14 July 2011
how to compile weechat
No edit summary
(how to compile weechat)
Line 10: Line 10:


Copy and paste that into your terminal command line, hit enter, and give yourself a pat on the back.
Copy and paste that into your terminal command line, hit enter, and give yourself a pat on the back.
== Compiling Weechat ==
Because it is too complicated for mere mortals to compile Weechat, and requires voodoo beyond those who understand ''make && make install'' here's how to do it
  git clone git://git.sv.gnu.org/weechat.git
  cd weechat
  ./autogen.sh
  ./configure --prefix=$HOME/bin --disable-ruby
  for f in `ls po/*.po`
  do
    /usr/bin/msgmerge --update $f po/weechat.pot
  done;
  make
  make install


== Basic use ==
== Basic use ==