brew install irssi
brew install loudmouth
git clone [email protected]:weiss/irssi-xmpp.git
cd irssi-xmpp
LDFLAGS='-flat_namespace -undefined warning -fPIC'; export LDFLAGS
make PREDIX=/usr/local/Cellar/irssi/0.8.15
make user-install
Add to ~/.irssi/startup
/load xmpp
Add servers to ~/.irssi/config:
servers = (
{
address = "chat.somewhere.net";
chatnet = "xmpp";
autoconnect = "yes";
password = "password";
},
)
Add chatnets to ~/.irssi/config:
chatnets = {
xmpp = {
type = "XMPP";
nick = "[email protected]";
};
};
s/PREDIX/PREFIX/ :)