diff --git a/bash/zncconfigure.bash b/bash/zncconfigure.bash index 064ffc1..2a2f1d2 100755 --- a/bash/zncconfigure.bash +++ b/bash/zncconfigure.bash @@ -1,10 +1,13 @@ #!/usr/bin/env bash +set -x +unset CC +unset CXX cd znc ./autogen.sh mkdir -p build cd build # PYENV (two lines) -export LD_LIBRARY_PATH=/home/users/mkaysi/.pyenv/versions/3.4.1/lib -export PKG_CONFIG_PATH=/home/users/mkaysi/.pyenv/versions/3.4.1/lib/pkgconfig/ -../configure --enable-debug --enable-perl --enable-python --enable-swig --enable-tcl --disable-cyrus --prefix=$HOME/.local -make -j$(nproc) +#export LD_LIBRARY_PATH=/home/users/mkaysi/.pyenv/versions/3.4.1/lib +#export PKG_CONFIG_PATH=/home/users/mkaysi/.pyenv/versions/3.4.1/lib/pkgconfig/ +../configure --enable-debug --enable-perl --enable-python --enable-swig --enable-tcl --enable-cyrus --prefix=$HOME/.local +#make -j$(nproc) diff --git a/bash/zncmodules.bash b/bash/zncmodules.bash index eff4a79..a4339b0 100755 --- a/bash/zncmodules.bash +++ b/bash/zncmodules.bash @@ -1,5 +1,6 @@ #!/usr/bin/env bash # This script downloads external ZNC modules which I use. +set -x cd znc cd modules echo "Downloading kvirc.cpp" @@ -8,6 +9,11 @@ curl -LO https://raw.githubusercontent.com/DarthGandalf/znc/dgmods/modules/kvirc #curl -LO https://raw.githubusercontent.com/mmilata/znc-otr/master/otr.cpp echo "Downloading privmsg.cpp" curl -LO https://raw.githubusercontent.com/kylef/znc-contrib/master/privmsg.cpp +echo "Downloading away_notify.cpp" +curl -LO https://github.com/NuclearW/znc-modules/raw/master/away_notify/away_notify.cpp +echo "Downloading away_notify_unsolicited.cpp" +curl -LO https://github.com/NuclearW/znc-modules/raw/master/away_notify/away_notify_unsolicited.cpp + # ~/.znc/modules mkdir -p ~/.znc/modules @@ -17,3 +23,4 @@ curl -LO https://raw.githubusercontent.com/jreese/znc-push/python/push.py echo "You can now run zncconfigure.bash" +