#!/bin/bash sudo su # add intrepid repository cat <<EOF> /etc/apt/sources.list.d/jaunty.list deb http://archive.ubuntu.com/ubuntu/ jaunty main restricted deb-src http://archive.ubuntu.com/ubuntu/ jaunty main restricted EOF # run update apt-get update apt-get install ekiga # remove repository rm /etc/apt/sources.list.d/jaunty.list apt-get update # LINKS http://snapshots.ekiga.net/ http://packages.ubuntu.com/jaunty/ekiga ### OLD ### wget http://ge.archive.ubuntu.com/ubuntu/pool/main/e/evolution-data-server/libedataserver1.2-9_2.22.3-0ubuntu2_i386.deb -P /tmp dpkg -i /tmp/libedataserver1.2-9_2.22.3-0ubuntu2_i386.deb gpg --keyserver keyserver.ubuntu.com --recv-keys 3596ED6E gpg --export --armor 3596ED6E | sudo apt-key add - echo "deb http://snapshots.ekiga.net/snapshots/ubuntu/ intrepid main" > /etc/apt/sources.list.d/ekiga.list apt-get update apt-get install -y --force-yes ekiga-snapshot