First of all, check out how you can install openSUSE on Raspberry Pi.
Now, you have to compile ZNC. There’s no package in the repositories. If developers read this, please please make an ARM package. Please!!!
First of all, you have to install the following packages (that’s what I did):
zypper in gcc-c++ gcc git libopenssl-devel make
Now, let’s download the last release (you can find the whole procedure at official page)
wget http://znc.in/releases/znc-latest.tar.gz
Then untar the file:
tar -xzvf znc*.*gz
Then you have to do some steps that usually do when you compile:
cd znc*
and run the command
./configure
Next command will take a lot of time to finish
make
When it’s over, run the final command:
make install
You’re ready to use it. Now login as user and run the command:
znc –makeconf
If you have an older configuration, you can use it (run only the command znc).
]]>