This will install Icecast
it should be easy to make a module/plugin for CWP
I to like to see icecast plugin for CWP
#!/bin/bash
yum remove -y libpam-krb5
yum groupinstall -y "Development Tools"
yum install -y wget perl curl dash bash tree expect screen cron sudo coreutils vorbis-tools quota nmap curl-devel libtheora-devel libvorbis-devel libxslt-devel speex-devel libxslt
mkdir -p /tmp/icecast2
cd /tmp/icecast2
wget http://downloads.xiph.org/releases/icecast/icecast-2.3.3.tar.gz
tar xf icecast-2.3.3.tar.gz
cd icecast-2.3.3
./configure
make
make install
ln -fs /usr/local/bin/icecast /usr/local/bin/icecast2
rm -rf /tmp/icecast2
[ $? -gt 0 ] && echo "$installerror" && exit
if [ "$MT" = "amd64" ]
then
yum install -y glibc.i686
[ $? -gt 0 ] && echo "$installerror" && exit