pau
September 7th, 2006, 07:20 AM
Hi,
wengo is a GPL option to skype. It works very fine but the latest deb package offered in their eb site is buggy; the sound for instance is not working at all.
If you want to use wengo you'll have to go to the bleeding edge and download one of the latest nightly builds. This script here below will install the latest nightly build of wengo in your home directory.
You'll need lynx, wget and gawk for it...
sudo apt-get install lynx wget gawk
To start
it just type ./Engega_wengo.sh in the directory ~USERNAME/wengo or click the icon.
To install just use the script as follows:
chmod u+x instal_wengo.sh && ./instal_wengo.sh
This is the script:
#!/bin/sh
clear;
echo -n "Installation latest nightly build of WENGO...";
echo -n "";
sleep 3;
lynx -dump http://download.wengo.com/nightlybuilds/binary/NG/GNULinux/rc2/ | tail -1 | gawk '{print $2}' > > /tmp/Wengo.txt&&
wget `cat /tmp/Wengo.txt`&&
tar xvfj wengophone*&&
rm wengophone*&&
mv wengo* $HOME/wengo&&
cd $HOME/wengo&&
wget www.aei.mpg.de/~pau/Engega_wengo.sh&&
chmod u+x Engega_wengo.sh&&
clear;
echo "The latest nightly build of WENGO has been installed in `whoami`/wengo To start it run ./Engega_wengo.sh or click the icon..."
enjoy...
wengo is a GPL option to skype. It works very fine but the latest deb package offered in their eb site is buggy; the sound for instance is not working at all.
If you want to use wengo you'll have to go to the bleeding edge and download one of the latest nightly builds. This script here below will install the latest nightly build of wengo in your home directory.
You'll need lynx, wget and gawk for it...
sudo apt-get install lynx wget gawk
To start
it just type ./Engega_wengo.sh in the directory ~USERNAME/wengo or click the icon.
To install just use the script as follows:
chmod u+x instal_wengo.sh && ./instal_wengo.sh
This is the script:
#!/bin/sh
clear;
echo -n "Installation latest nightly build of WENGO...";
echo -n "";
sleep 3;
lynx -dump http://download.wengo.com/nightlybuilds/binary/NG/GNULinux/rc2/ | tail -1 | gawk '{print $2}' > > /tmp/Wengo.txt&&
wget `cat /tmp/Wengo.txt`&&
tar xvfj wengophone*&&
rm wengophone*&&
mv wengo* $HOME/wengo&&
cd $HOME/wengo&&
wget www.aei.mpg.de/~pau/Engega_wengo.sh&&
chmod u+x Engega_wengo.sh&&
clear;
echo "The latest nightly build of WENGO has been installed in `whoami`/wengo To start it run ./Engega_wengo.sh or click the icon..."
enjoy...