Compiling profanity for raspbian
Install dependencies:1sudo apt-get install libncurses5-dev libncursesw5-dev libxml2-dev
Compile and install libstrophe:123456789mkdir ~/.localmkdir ~/srccd ~/srcgit clone https://github.com/strophe/libstrophecd libstrophe./bootstrap.sh./configure --with-libxml2 --prefix=$HOME/.local/makemake install
Compile and install profanity:123456cd ~/srcgit clone https://github.com/boothj5/profanity.gitcd profanityLDFLAGS=-L$HOME/.local/lib CPPFLAGS=-I$HOME/.local/include ./configure --prefix=$HOME/.localmakemake install
Run it:1LD_LIBRARY_PATH=$HOME/.local/lib $HOME/.local/bin/profanity